diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-03-26 13:38:30 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-03-26 13:38:30 -0400 |
commit | 662a7842f93c3c89b95697e9a81f277f729e132d (patch) | |
tree | e78dfd9a7535ab7454ae786608cbcd3ea1394d15 /docs/features/initialization.rst | |
parent | 990ec45e087aed2a9a6309db893c8a25cb3a89fd (diff) | |
download | cmd2-git-662a7842f93c3c89b95697e9a81f277f729e132d.tar.gz |
Ctrl-C now stops a running text script instead of just the current script command
Diffstat (limited to 'docs/features/initialization.rst')
-rw-r--r-- | docs/features/initialization.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/initialization.rst b/docs/features/initialization.rst index b1ca4f05..d79b3818 100644 --- a/docs/features/initialization.rst +++ b/docs/features/initialization.rst @@ -146,8 +146,8 @@ override: everything available with **self_in_py**) - **quiet**: if ``True`` then completely suppress nonessential output (Default: ``False``) -- **quit_on_sigint**: if ``True`` quit the main loop on interrupt instead of - just resetting prompt +- **quit_on_sigint**: if ``True`` Ctrl-C at the prompt will quit the program + instead of just resetting prompt - **settable**: dictionary that controls which of these instance attributes are settable at runtime using the *set* command - **timing**: if ``True`` display execution time for each command (Default: |