summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fixed another Flake warningKevin Van Brunt2019-03-101-4/+2
| |
| * Fixed flake warningsKevin Van Brunt2019-03-091-4/+4
| |
| * Added unit tests for disabling commandsKevin Van Brunt2019-03-091-1/+1
| |
| * Merge branch 'master' into disable_commandKevin Van Brunt2019-03-091-1/+1
| |\
| | * Only print a traceback if there is one to printKevin Van Brunt2019-03-091-1/+1
| | |
| * | Added way to disable commandsKevin Van Brunt2019-03-091-4/+103
| |/
* | Clean up history commandkotfu2019-03-091-7/+14
|/
* Updated a comment and moved an importKevin Van Brunt2019-03-061-1/+1
|
* Moved some utility functions from cmd2.py to parsing.pyTodd Leonhardt2019-03-051-33/+5
|
* Fix flake8 failureTodd Leonhardt2019-03-051-1/+0
|
* Reversed arguments in a UnionKevin Van Brunt2019-03-051-4/+4
|
* Added a shlex.split() wrapper to have a common way of calling it.Kevin Van Brunt2019-03-051-36/+47
| | | | Replaced parse_quoted_string with _get_command_arg_list.
* Merged master into this branch and resolved conflicts in CHANGELOGTodd Leonhardt2019-03-041-149/+44
|\
| * Merged master into history and resolved conflictsTodd Leonhardt2019-03-041-2/+2
| |\
| * | Potential fixes for outstanding multi-line issues in history commandTodd Leonhardt2019-03-031-3/+9
| | |
| * | Merged from master and resolved conflicts in cmd2.pyTodd Leonhardt2019-03-021-16/+17
| |\ \
| * \ \ Merge branch 'master' into historyTodd Leonhardt2019-02-281-9/+19
| |\ \ \
| * \ \ \ Merged master into history branch and fixed merge conflictsTodd Leonhardt2019-02-261-8/+7
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' into historyKevin Van Brunt2019-02-201-9/+8
| |\ \ \ \ \
| * | | | | | Fix incorrect example in alias help messagekotfu2019-02-161-1/+1
| | | | | | |
| * | | | | | Fix flake errorskotfu2019-02-091-6/+8
| | | | | | |
| * | | | | | Move the rest of the history tests into test_history.pykotfu2019-02-091-1/+1
| | | | | | |
| * | | | | | Added -x option to history command for #545kotfu2019-02-091-14/+28
| | | | | | |
| * | | | | | Extract history classes and test into their own fileskotfu2019-02-091-140/+1
| | | | | | |
| * | | | | | Merge branch 'master' into historyTodd Leonhardt2019-02-071-23/+40
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'master' into historyKevin Van Brunt2019-01-081-3/+12
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'master' into historyKevin Van Brunt2018-12-061-1/+1
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' into historyKevin Van Brunt2018-12-051-13/+13
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | First version of adding an expanded option to history itemsKevin Van Brunt2018-12-031-17/+29
| | | | | | | | | | |
* | | | | | | | | | | Merge master into with_argument_list and resolved conflictsTodd Leonhardt2019-03-041-3/+3
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | |
| * | | | | | | | | | Fixed documentationKevin Van Brunt2019-03-011-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Removed support for c-style and embedded commentsKevin Van Brunt2019-03-011-2/+2
| | |_|_|_|_|_|_|_|/ | |/| | | | | | | |
* | | | | | | | | | Simplifying type hintTodd Leonhardt2019-03-041-1/+1
| | | | | | | | | |
* | | | | | | | | | Fix for when with_argument_list is called with preserve_quotes optional argumentTodd Leonhardt2019-03-041-9/+14
|/ / / / / / / / /
* | | | | | | | | Fixed a lot of warningsKevin Van Brunt2019-03-011-17/+18
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | Added matches_sort_key member to cmd2Kevin Van Brunt2019-02-271-6/+16
| | | | | | | |
* | | | | | | | Made cmd2_app a positional and required argument of AutoCompleter.Kevin Van Brunt2019-02-231-3/+3
| |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Deleted bash tab completion support. AutoCompleter no longer assumes CompletionItem results are sorted.
* | | | | | | Restored called to expanduser in do_edit() instead of relying on do_shell() ↵0.9.10Kevin Van Brunt2019-02-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to do it. This should prevent issues if someone has an overridden do_shell() that doesn't expand ~ in paths.
* | | | | | | Updated macro documentation0.9.9Kevin Van Brunt2019-02-211-2/+2
| | | | | | |
* | | | | | | Removed os.system in favor of do_shellKevin Van Brunt2019-02-211-6/+5
| |_|_|_|_|/ |/| | | | |
* | | | | | No longer sorting settable during initialization since the show method ↵Kevin Van Brunt2019-02-201-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | already sorts it results
* | | | | | Fixed bug where items tab completed in set were not currentKevin Van Brunt2019-02-201-3/+7
| |_|_|_|/ |/| | | |
* | | | | Suppress KeyboardInterrupt in portions of py/pyscript where the interactive ↵Kevin Van Brunt2019-02-061-141/+157
| | | | | | | | | | | | | | | | | | | | console isn't running
* | | | | Fixed issue where calling exit() or quit() from a pyscript would close the ↵Kevin Van Brunt2019-02-061-137/+138
| |_|_|/ |/| | | | | | | | | | | whole console
* | | | Added tab completion of paths to pyscript script argumentsKevin Van Brunt2019-01-081-2/+3
| | | |
* | | | Improved commentKevin Van Brunt2018-12-211-1/+3
| | | |
* | | | Restored default behavior of setting cmd_echo to False before running a py ↵Kevin Van Brunt2018-12-211-0/+4
| | | | | | | | | | | | | | | | script
* | | | Fixed bug in cmd2.Cmd.select() when user enters 0 or negative numberTodd Leonhardt2018-12-131-0/+2
| |_|/ |/| |
* | | Removed ERROR: text from perror outputKevin Van Brunt2018-12-061-1/+1
| |/ |/|
* | Added some return type hintsKevin Van Brunt2018-12-051-9/+9
| |