summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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
| |
* | Moved some class specific code out of __init__Kevin Van Brunt2018-12-031-4/+4
|/
* Moved default_to_shell logic back to default()Kevin Van Brunt2018-12-031-17/+14
|
* Made it so default_to_shell results in do_shell being called so that output ↵Kevin Van Brunt2018-11-301-29/+36
| | | | can be captured
* Renamed display_width to ansi_safe_wcswidthKevin Van Brunt2018-11-161-4/+4
|
* Added wrapper for wcswidth that removes ansi escape charactersKevin Van Brunt2018-11-151-6/+5
|
* Remove elif: decolorized_write already handles itEthan McCreadie2018-11-011-4/+1
|
* Strip color codes when redirecting w/ ppaged()Ethan McCreadie2018-11-011-0/+3
|
* Fixed messed up GitHub auto-commit from PR suggestionTodd Leonhardt2018-10-261-2/+1
|
* Update cmd2/cmd2.pykmvanbrunt2018-10-261-1/+1
| | | Co-Authored-By: tleonhardt <todd.leonhardt@gmail.com>
* Update cmd2/cmd2.pykmvanbrunt2018-10-261-1/+1
| | | Co-Authored-By: tleonhardt <todd.leonhardt@gmail.com>
* Update cmd2/cmd2.pykmvanbrunt2018-10-261-1/+1
| | | Co-Authored-By: tleonhardt <todd.leonhardt@gmail.com>
* Improved documentation for argument parsing decoratorsTodd Leonhardt2018-10-261-13/+21
| | | | | Also: - Improved type hinting for these decorators
* Refactored filtering in path_complete to use a functionKevin Van Brunt2018-10-261-11/+11
|