diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-03 20:01:33 -0400 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-03 20:01:33 -0400 |
| commit | 2c3bd0a5177be980e17b4befc79cbda3825cf63b (patch) | |
| tree | 69b94aa20da0f6b11538748c8d4c9e6b6585a89e /docs/freefeatures.rst | |
| parent | 7c17d8bbf006e17f0104b6d9d35fc67ca4f235fd (diff) | |
| download | cmd2-git-2c3bd0a5177be980e17b4befc79cbda3825cf63b.tar.gz | |
Updated Sphinx docs
Updated to reflect that the default value of abbrev is now False.
Diffstat (limited to 'docs/freefeatures.rst')
| -rw-r--r-- | docs/freefeatures.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/freefeatures.rst b/docs/freefeatures.rst index 2d928ad3..7381ff8e 100644 --- a/docs/freefeatures.rst +++ b/docs/freefeatures.rst @@ -265,13 +265,13 @@ Abbreviated commands ==================== ``cmd2`` apps will accept shortened command names -so long as there is no ambiguity. Thus, if -``do_divide`` is defined, then ``divid``, ``div``, +so long as there is no ambiguity if the ``abrev`` 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 can be turned off with ``app.abbrev`` (see :ref:`parameters`) +This behavior is disabled by default, but can be turned on with ``app.abbrev`` (see :ref:`parameters`) .. warning:: |
