@@ -14,8 +14,8 @@ command. The `help` command by itself displays a list of the commands available:
14
14
15
15
Documented commands (use 'help -v' for verbose/'help <topic>' for details):
16
16
===========================================================================
17
- alias help ipy quit run_script shell
18
- edit history py run_pyscript set shortcuts
17
+ alias help ipy py run_pyscript set shortcuts
18
+ edit history macro quit run_script shell
19
19
```
20
20
21
21
The ` help ` command can also be used to provide detailed help for a specific command:
@@ -53,8 +53,8 @@ By default, the `help` command displays:
53
53
54
54
Documented commands (use 'help -v' for verbose/'help <topic>' for details):
55
55
===========================================================================
56
- alias help ipy quit run_script shell
57
- edit history py run_pyscript set shortcuts
56
+ alias help ipy py run_pyscript set shortcuts
57
+ edit history macro quit run_script shell
58
58
59
59
If you have a large number of commands, you can optionally group your commands into categories.
60
60
Here's the output from the example ` help_categories.py ` :
@@ -80,8 +80,8 @@ Here's the output from the example `help_categories.py`:
80
80
81
81
Other
82
82
=====
83
- alias edit history run_pyscript set shortcuts
84
- config help quit run_script shell version
83
+ alias edit history py run_pyscript set shortcuts
84
+ config help macro quit run_script shell version
85
85
86
86
There are 2 methods of specifying command categories, using the ` @with_category ` decorator or with
87
87
the ` categorize() ` function. Once a single command category is detected, the help output switches to
@@ -143,9 +143,9 @@ categories with per-command Help Messages:
143
143
findleakers Find Leakers command.
144
144
list List command.
145
145
redeploy Redeploy command.
146
- restart Restart
146
+ restart Restart command.
147
147
sessions Sessions command.
148
- start Start
148
+ start Start command.
149
149
stop Stop command.
150
150
undeploy Undeploy command.
151
151
@@ -164,9 +164,9 @@ categories with per-command Help Messages:
164
164
resources Resources command.
165
165
serverinfo Server Info command.
166
166
sslconnectorciphers SSL Connector Ciphers command is an example of a command that contains
167
- multiple lines of help information for the user. Each line of help in a
168
- contiguous set of lines will be printed and aligned in the verbose output
169
- provided with 'help --verbose'.
167
+ multiple lines of help information for the user. Each line of help in a
168
+ contiguous set of lines will be printed and aligned in the verbose output
169
+ provided with 'help --verbose'.
170
170
status Status command.
171
171
thread_dump Thread Dump command.
172
172
vminfo VM Info command.
@@ -178,6 +178,7 @@ categories with per-command Help Messages:
178
178
edit Run a text editor and optionally open a file with it.
179
179
help List available commands or provide detailed help for a specific command.
180
180
history View, run, edit, save, or clear previously entered commands.
181
+ macro Manage macros.
181
182
quit Exit this application.
182
183
run_pyscript Run Python script within this application's environment.
183
184
run_script Run text script.
0 commit comments