summaryrefslogtreecommitdiff
path: root/cmd2.py
Commit message (Expand)AuthorAgeFilesLines
...
* | Fixed issue with negative indexesKevin Van Brunt2018-03-231-31/+21
* | Improved token parsing for tab completionKevin Van Brunt2018-03-231-11/+25
* | Added an extra parsing checkKevin Van Brunt2018-03-231-0/+7
* | Added shell_cmd_complete() as a stand alone tab-completion function.Kevin Van Brunt2018-03-231-158/+168
* | Renamed completions to matchesKevin Van Brunt2018-03-221-44/+44
* | Added ability to write custom match display functionsKevin Van Brunt2018-03-221-51/+90
* | Letting readline know we updated the displayKevin Van Brunt2018-03-221-0/+4
* | Fixed GNU readline issue where the prompt did not always redraw properlyKevin Van Brunt2018-03-221-32/+35
* | Added get_all_commandsKevin Van Brunt2018-03-221-9/+18
* | Renamed exclude_from_help to hidden_commandsKevin Van Brunt2018-03-221-51/+61
* | Make sure completion tokens are never emptyKevin Van Brunt2018-03-221-12/+14
* | Fixed Python 2.7 issueKevin Van Brunt2018-03-211-2/+6
* | Added better analysis of tab completing shell commandsKevin Van Brunt2018-03-211-21/+19
* | More unit test updatesKevin Van Brunt2018-03-211-1/+1
* | Don't try to look for subcommands on something that is running as a shell com...Kevin Van Brunt2018-03-211-8/+12
* | Merge branch 'master' into new_quoted_completionKevin Van Brunt2018-03-211-5/+9
|\ \ | |/
| * Fixed bug where readline got imported separately laterTodd Leonhardt2018-03-211-1/+0
| * Added back in preference for gnureadline if it is presentTodd Leonhardt2018-03-211-5/+9
* | Fixed Pycharm warningsKevin Van Brunt2018-03-211-11/+35
* | Fixed check for unclosed quoteKevin Van Brunt2018-03-211-1/+7
* | Corrected display_entire_match behavior. A bit of refactoring.Kevin Van Brunt2018-03-211-44/+97
* | Fixed issue where display matches were not being setKevin Van Brunt2018-03-211-3/+5
* | Added generic code for getting terminal size for Python versions prior to 3.3Todd Leonhardt2018-03-211-1/+7
* | shutil.get_terminal_size does not exist before Python 3.3Kevin Van Brunt2018-03-211-1/+4
* | Renamed a functionKevin Van Brunt2018-03-211-2/+2
* | Updated commentsKevin Van Brunt2018-03-211-4/+6
* | Made sure quoting of a token works on Python 2.7.Kevin Van Brunt2018-03-201-20/+28
* | Fixed unit test failure on Python 2.7Todd Leonhardt2018-03-201-1/+2
* | Returning on errorKevin Van Brunt2018-03-201-0/+1
* | Merge branch 'master' into quoted_completionKevin Van Brunt2018-03-201-3/+40
|\ \ | |/
| * Added an extra check to ppaged() to make sure cmd2 app is running in a real t...Todd Leonhardt2018-03-201-2/+11
| * Fixed the text of the KeyboardInterrupt Exception that is getting raised with...Todd Leonhardt2018-03-201-1/+1
| * Fix unit testsTodd Leonhardt2018-03-191-1/+1
| * Added a default signal handler for SIGINT (Ctrl-C)Todd Leonhardt2018-03-191-1/+24
| * ~ only needs to be expanded if search text was enteredKevin Van Brunt2018-03-181-2/+2
| * Fixed how we complete ~Kevin Van Brunt2018-03-181-7/+6
* | Expanded do_shell parsing of commandKevin Van Brunt2018-03-201-1/+14
* | Fixed Windows since pyreadline does not implement set_completion_display_matc...Kevin Van Brunt2018-03-201-3/+28
* | Fixed index bugKevin Van Brunt2018-03-201-3/+9
* | Made cmd2.py executableKevin Van Brunt2018-03-201-0/+0
* | Fixed some unit testsKevin Van Brunt2018-03-201-6/+9
* | Made path completion work with tildes againKevin Van Brunt2018-03-201-19/+30
* | Using same completer delimiters. Added customization for how tab-completion s...Kevin Van Brunt2018-03-201-94/+203
* | Renamed variableKevin Van Brunt2018-03-201-7/+7
* | Not altering copy of completion_tokenKevin Van Brunt2018-03-201-8/+6
* | Automatically adding an opening quote if needed during tab completionKevin Van Brunt2018-03-201-65/+84
* | Adding opening quote with GNU readlineKevin Van Brunt2018-03-201-1/+47
* | Simplified function that tokenizes for tab completionKevin Van Brunt2018-03-191-20/+45
* | Appending closing quote and space when neededKevin Van Brunt2018-03-191-0/+14
* | First steps toward automatically added opening quoteKevin Van Brunt2018-03-191-98/+67