diff options
author | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-15 18:58:44 -0400 |
---|---|---|
committer | Todd Leonhardt <tleonhardt@gmail.com> | 2017-06-15 18:58:44 -0400 |
commit | 04c1f2ed25ae3be49c98bb34cc432225f679a3bb (patch) | |
tree | 55f0ea5493eae852fe41c1f2bc15dfbd05f9db2c /CHANGES.md | |
parent | a9f7c775dda166ae9f376d0eecd3cb9576ccef16 (diff) | |
download | cmd2-git-04c1f2ed25ae3be49c98bb34cc432225f679a3bb.tar.gz |
Fixed tab completion of command and shell commands
We now more closely emulate how Bash does or does not append a space.
Diffstat (limited to 'CHANGES.md')
-rw-r--r-- | CHANGES.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,7 +13,8 @@ News * Added the ability to exclude commands from the help menu (**eof** included by default) * Redundant **list** command removed and features merged into **history** command * Added **pyscript** command which supports tab-completion and running Python scripts with arguments - * Improved tab-completion of file system paths, particularly for paths containing a dash (**-**) + * Improved tab-completion of file system paths, command names, and shell commands + * Thanks to Kevin Van Brunt for all fo the help with debugging and testing this * Changed default value of USE_ARG_LIST to True - this affects the beavhior of all **@options** commands * **WARNING**: This breaks backwards compatibility, to restore backwards compatibility, add this to the **__init__()** method in your custom class derived from cmd2.Cmd: |