diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-02 20:51:01 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-02 20:51:01 -0500 |
commit | b657b45dcca6687da43639c49e65ce4b16303d3d (patch) | |
tree | b4647b2bef6f9ba914d6711e5ddeebd82655fb7f /docs | |
parent | 40b52252a3108c8989afd6ca7e64ce9d4116cb4f (diff) | |
download | cmd2-git-b657b45dcca6687da43639c49e65ce4b16303d3d.tar.gz |
Removed support for case-insensitive command parsing
Diffstat (limited to 'docs')
-rw-r--r-- | docs/settingchanges.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/docs/settingchanges.rst b/docs/settingchanges.rst index 3e48fe24..ab7254a3 100644 --- a/docs/settingchanges.rst +++ b/docs/settingchanges.rst @@ -8,16 +8,6 @@ A parameter can also be changed at runtime by the user *if* its name is included in the dictionary ``app.settable``. (To define your own user-settable parameters, see :ref:`parameters`) -Case-insensitivity -================== - -By default, all ``cmd2`` command names are case-insensitive; -``sing the blues`` and ``SiNg the blues`` are equivalent. To change this, -set ``App.case_insensitive`` to False. - -Whether or not you set ``case_insensitive``, *please do not* define -command method names with any uppercase letters. ``cmd2`` expects all command methods -to be lowercase. Shortcuts (command aliases) =========================== |