command line *set
John Rickman (71) 646 posts |
I use python in a task window to look up the builtin documentation like so:
A bit unhelpfully, typing “help” leads to a message saying type “help()” if you really want help.
To avoid a lot of typing I would like to set a system variable to go straight to “help>” prompt but
then typing
fails with:
How do I define the *set command to work the same as typing the command at the keyboard? |
David J. Ruck (33) 1635 posts |
You are just setting a variable, rather than an alias, which is defined as This works for me, using the handy alias alias.
|
John Rickman (71) 646 posts |
This works for me, using the handy alias alias. Thanks |