summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-03-02 20:51:01 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-03-02 20:51:01 -0500
commitb657b45dcca6687da43639c49e65ce4b16303d3d (patch)
treeb4647b2bef6f9ba914d6711e5ddeebd82655fb7f /README.md
parent40b52252a3108c8989afd6ca7e64ce9d4116cb4f (diff)
downloadcmd2-git-b657b45dcca6687da43639c49e65ce4b16303d3d.tar.gz
Removed support for case-insensitive command parsing
Diffstat (limited to 'README.md')
-rwxr-xr-xREADME.md6
1 files changed, 1 insertions, 5 deletions
diff --git a/README.md b/README.md
index 28757da6..863a4c1d 100755
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ Main Features
- Redirect command output to file with `>`, `>>`; input from file with `<`
- Bare `>`, `>>` with no filename send output to paste buffer (clipboard)
- `py` enters interactive Python console (opt-in `ipy` for IPython console)
-- Multi-line and case-insensitive commands
+- Multi-line commands
- Special-character command shortcuts (beyond cmd's `@` and `!`)
- Settable environment parameters
- Parsing commands with arguments using `argparse`, including support for sub-commands
@@ -94,10 +94,6 @@ Instructions for implementing each feature follow.
The program will keep expecting input until a line ends with any of the characters
in `Cmd.terminators` . The default terminators are `;` and `/n` (empty newline).
-- Case-insensitive commands
-
- All commands are case-insensitive, unless ``Cmd.caseInsensitive`` is set to ``False``.
-
- Special-character shortcut commands (beyond cmd's "@" and "!")
To create a single-character shortcut for a command, update `Cmd.shortcuts`.