diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/freefeatures.rst | 17 | ||||
-rw-r--r-- | docs/settingchanges.rst | 3 |
2 files changed, 1 insertions, 19 deletions
diff --git a/docs/freefeatures.rst b/docs/freefeatures.rst index a439db56..f0918bba 100644 --- a/docs/freefeatures.rst +++ b/docs/freefeatures.rst @@ -271,23 +271,6 @@ Quitting the application It's trivial, but it's one less thing for you to remember. -Abbreviated commands -==================== - -``cmd2`` apps will accept shortened command names -so long as there is no ambiguity if the ``abbrev`` settable parameter is set to ``True``. -Thus, if ``do_divide`` is defined, then ``divid``, ``div``, -or even ``d`` will suffice, so long as there are -no other commands defined beginning with *divid*, -*div*, or *d*. - -This behavior is disabled by default, but can be turned on with ``app.abbrev`` (see :ref:`parameters`) - -.. warning:: - - Due to the way the parsing logic works for multiline commands, abbreviations - will not be accepted for multiline commands. - Misc. pre-defined commands ========================== diff --git a/docs/settingchanges.rst b/docs/settingchanges.rst index 2b9f9a86..3e48fe24 100644 --- a/docs/settingchanges.rst +++ b/docs/settingchanges.rst @@ -116,7 +116,6 @@ comments, is viewable from within a running application with:: (Cmd) set --long - abbrev: False # Accept abbreviated commands colors: True # Colorized output (*nix only) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error @@ -130,5 +129,5 @@ with:: Any of these user-settable parameters can be set while running your app with the ``set`` command like so:: - set abbrev True + set colors False |