diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-03-26 15:25:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-26 15:25:16 -0400 |
commit | 274a57b7aa56cd6b5dabcdc73326dd4d0e45aae3 (patch) | |
tree | cfd3150073e9f0fce61fdc18d17fb49496e66b8a /docs/features/initialization.rst | |
parent | 990ec45e087aed2a9a6309db893c8a25cb3a89fd (diff) | |
parent | 38b37a98f3affe8632866177195c2c16a3ef88ed (diff) | |
download | cmd2-git-274a57b7aa56cd6b5dabcdc73326dd4d0e45aae3.tar.gz |
Merge pull request #910 from python-cmd2/ctrl-c-script
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: |