diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-12-03 13:47:27 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-12-03 13:47:27 -0500 |
commit | 4afb9e7c0c8092476ed98adccd2d389660827c25 (patch) | |
tree | c66a6a4c45cca931301c7017d9f15b0b2610c01d /tests/conftest.py | |
parent | fb3486fae7df048c2ff9302ee9bf87fbe43461fb (diff) | |
download | cmd2-git-4afb9e7c0c8092476ed98adccd2d389660827c25.tar.gz |
First version of adding an expanded option to history items
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index ac6a1896..fdaf2809 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -51,7 +51,7 @@ shortcuts List available shortcuts """ # Help text for the history command -HELP_HISTORY = """Usage: history [-h] [-r | -e | -s | -o FILE | -t TRANSCRIPT | -c] [arg] +HELP_HISTORY = """Usage: history [-h] [-r | -e | -s | -o FILE | -t TRANSCRIPT | -v | -c] [arg] View, run, edit, save, or clear previously entered commands @@ -71,6 +71,7 @@ optional arguments: output commands to a script file -t, --transcript TRANSCRIPT output commands and results to a transcript file + -v, --verbose display history and include expanded commands if they differ from the typed command. -c, --clear clear all history """ |