diff options
author | kotfu <kotfu@kotfu.net> | 2020-02-14 20:51:21 -0700 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2020-02-14 20:51:21 -0700 |
commit | c8ba8b94950edcad47f791cceec949f174ea7c71 (patch) | |
tree | dbae3fa7482c24d6cca9a52d597f498c61d18be0 /cmd2/constants.py | |
parent | 9c6f1304816707e38c74926c93f62e48836b95c9 (diff) | |
parent | 013b9e0a2c75e17f8aa0e0f7cbe50d84d2f657d8 (diff) | |
download | cmd2-git-c8ba8b94950edcad47f791cceec949f174ea7c71.tar.gz |
Merge branch 'master' into api_docs
# Conflicts:
# cmd2/ansi.py
# docs/features/completion.rst
Diffstat (limited to 'cmd2/constants.py')
-rw-r--r-- | cmd2/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd2/constants.py b/cmd2/constants.py index 9e8e7780..bc72817f 100644 --- a/cmd2/constants.py +++ b/cmd2/constants.py @@ -15,6 +15,9 @@ MULTILINE_TERMINATOR = ';' LINE_FEED = '\n' +# One character ellipsis +HORIZONTAL_ELLIPSIS = '…' + DEFAULT_SHORTCUTS = {'?': 'help', '!': 'shell', '@': 'run_script', '@@': '_relative_run_script'} # Used as the command name placeholder in disabled command messages. |