@@ -14,8 +14,8 @@ command. The `help` command by itself displays a list of the commands available:
1414
1515Documented commands (use 'help -v' for verbose/'help <topic>' for details):
1616===========================================================================
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
1919```
2020
2121The ` help ` command can also be used to provide detailed help for a specific command:
@@ -53,8 +53,8 @@ By default, the `help` command displays:
5353
5454 Documented commands (use 'help -v' for verbose/'help <topic>' for details):
5555 ===========================================================================
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
5858
5959If you have a large number of commands, you can optionally group your commands into categories.
6060Here's the output from the example ` help_categories.py ` :
@@ -80,8 +80,8 @@ Here's the output from the example `help_categories.py`:
8080
8181 Other
8282 =====
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
8585
8686There are 2 methods of specifying command categories, using the ` @with_category ` decorator or with
8787the ` categorize() ` function. Once a single command category is detected, the help output switches to
@@ -143,9 +143,9 @@ categories with per-command Help Messages:
143143 findleakers Find Leakers command.
144144 list List command.
145145 redeploy Redeploy command.
146- restart Restart
146+ restart Restart command.
147147 sessions Sessions command.
148- start Start
148+ start Start command.
149149 stop Stop command.
150150 undeploy Undeploy command.
151151
@@ -164,9 +164,9 @@ categories with per-command Help Messages:
164164 resources Resources command.
165165 serverinfo Server Info command.
166166 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'.
170170 status Status command.
171171 thread_dump Thread Dump command.
172172 vminfo VM Info command.
@@ -178,6 +178,7 @@ categories with per-command Help Messages:
178178 edit Run a text editor and optionally open a file with it.
179179 help List available commands or provide detailed help for a specific command.
180180 history View, run, edit, save, or clear previously entered commands.
181+ macro Manage macros.
181182 quit Exit this application.
182183 run_pyscript Run Python script within this application's environment.
183184 run_script Run text script.
0 commit comments