summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-16 17:49:58 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-16 17:49:58 -0400
commit4a4e20601b9c5db378bbdc42ae67f2438fb04652 (patch)
tree3be843aba533096bad72a0e258fd7849876da3ce
parentfd9657d651ccdd7d42730489fe32448a90992ef6 (diff)
downloadcmd2-git-4a4e20601b9c5db378bbdc42ae67f2438fb04652.tar.gz
Added documentation
-rw-r--r--CHANGELOG.md1
-rwxr-xr-xREADME.md1
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d82d191d..3c590bea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@
* Added [quit_on_sigint](http://cmd2.readthedocs.io/en/latest/settingchanges.html#quit-on-sigint) attribute to enable canceling current line instead of quitting when Ctrl+C is typed
* Added possibility of having readline history preservation in a SubMenu
* Added [table_display.py](https://github.com/python-cmd2/cmd2/blob/master/examples/table_display.py) example to demonstrate how to display tabular data
+ * Added command aliasing with ``alias`` command
## 0.8.1 (March 9, 2018)
diff --git a/README.md b/README.md
index 1c9c5957..ab57f823 100755
--- a/README.md
+++ b/README.md
@@ -29,6 +29,7 @@ Main Features
- Option to display long output using a pager with ``cmd2.Cmd.ppaged()``
- Multi-line commands
- Special-character command shortcuts (beyond cmd's `@` and `!`)
+- Command aliasing
- Settable environment parameters
- Parsing commands with arguments using `argparse`, including support for sub-commands
- Sub-menu support via the ``AddSubmenu`` decorator