summaryrefslogtreecommitdiff
path: root/cmd2
Commit message (Expand)AuthorAgeFilesLines
* Fixed a lot of warningsKevin Van Brunt2019-03-014-22/+23
* Removed ability to call commands as if they were functions in pyscript (e.g. ...Kevin Van Brunt2019-02-281-281/+25
* Updated the examples to illustrate sorting CompletionItemsKevin Van Brunt2019-02-271-4/+4
* Added matches_sort_key member to cmd2Kevin Van Brunt2019-02-272-15/+30
* Made cmd2_app a positional and required argument of AutoCompleter.Kevin Van Brunt2019-02-233-304/+21
* Restored called to expanduser in do_edit() instead of relying on do_shell() t...0.9.10Kevin Van Brunt2019-02-221-2/+2
* 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 alread...Kevin Van Brunt2019-02-201-6/+1
* 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 c...Kevin Van Brunt2019-02-061-141/+157
* Fixed issue where calling exit() or quit() from a pyscript would close the wh...Kevin Van Brunt2019-02-061-137/+138
* Echoing string data directly to inner_stream instead of inner_stream.buffer t...Kevin Van Brunt2019-01-241-6/+5
* 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 sc...Kevin Van Brunt2018-12-211-0/+4
* 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
* Fix flake8 issuesTodd Leonhardt2018-12-067-18/+21
* 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 c...Kevin Van Brunt2018-11-301-29/+36
* Updated commentKevin Van Brunt2018-11-301-4/+4
* Renamed display_width to ansi_safe_wcswidthKevin Van Brunt2018-11-162-6/+7
* Added wrapper for wcswidth that removes ansi escape charactersKevin Van Brunt2018-11-152-6/+16
* 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
* Update cmd2/cmd2.pykmvanbrunt2018-10-261-1/+1
* Update cmd2/cmd2.pykmvanbrunt2018-10-261-1/+1
* Improved documentation for argument parsing decoratorsTodd Leonhardt2018-10-261-13/+21
* Refactored filtering in path_complete to use a functionKevin Van Brunt2018-10-262-12/+12
* cmdloop now checks to see if it is running in the main thread before attempti...Todd Leonhardt2018-10-211-6/+9
* Deleted Cmd.colorize() method and Cmd._colorcodes dictionary which were depre...Todd Leonhardt2018-10-181-20/+0
* Updated outdated header comment in cmd2.pyTodd Leonhardt2018-10-141-1/+1
* RefactoredKevin Van Brunt2018-10-131-26/+29
* Argparse commands called as methods of PyscriptBridge now go through onecmd_p...Kevin Van Brunt2018-10-121-14/+15
* Non-argparse commands called as methods of PyscriptBridge now go through onec...Kevin Van Brunt2018-10-121-1/+6
* You can now call a macro with extra argumentsKevin Van Brunt2018-10-122-7/+17
* Refactored async_alertKevin Van Brunt2018-10-111-56/+43
* Using wcwidth to calculate display width of promptKevin Van Brunt2018-10-111-18/+25
* Do not asynchronously update continuation promptsKevin Van Brunt2018-10-111-16/+26
* Syle-based refactorKevin Van Brunt2018-10-111-2/+2
* Fixed ArgparseFunctor to allow flag looking tokens in REMAINDER sectionsKevin Van Brunt2018-10-101-2/+4
* Fixed issue where flag at beginning of REMAINDER section was tab completingKevin Van Brunt2018-10-101-10/+8
* Added code to handle -- in argparse completerKevin Van Brunt2018-10-102-22/+43
* Added tests for token_resembles_flagKevin Van Brunt2018-10-091-1/+2
* Fixed error where an inner stream like StringIO doesn't have a buffer attribute.Kevin Van Brunt2018-10-091-2/+8