Skip to content

Commit

Permalink
Same
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jun 6, 2015
1 parent a276147 commit ef261cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/commands/set/autolist.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Set Auto List
-------------

**set autolist** [*on* | *off*]
**set autolist** [ **on** | **off** ]

Run the :ref:`list <list>` command every time you stop in the
debugger.
Expand Down Expand Up @@ -43,3 +43,8 @@ With this, you will get output like:

You may also want to put this this in your debugger startup file. See
[#Startup\_Profile]

See also:
+++++++++

:ref:`show autolist <show_autolist>`
10 changes: 8 additions & 2 deletions trepan/processor/command/set_subcmd/autolist.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@


class SetAutoList(Mbase_subcmd.DebuggerSetBoolSubcommand):
"""**set autolist** [*on* | *off*]
"""**set autolist** [ **on** | **off** ]
Run the `list` command every time we enter the debugger."""
Run the `list` command every time we enter the debugger.
See also:
---------
`show autolist`
"""

in_list = True
min_abbrev = len('autol')
Expand Down

0 comments on commit ef261cc

Please sign in to comment.