summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fixed indexing bug and unit testKevin Van Brunt2018-03-262-5/+5
* All completer routines now receive the entire token being completed in the te...Kevin Van Brunt2018-03-261-96/+37
* Removed unit testKevin Van Brunt2018-03-251-11/+0
* Fixing unit testsKevin Van Brunt2018-03-252-148/+89
* Removed unused importsKevin Van Brunt2018-03-251-2/+0
* Improved parsing for tab completing redirectorsKevin Van Brunt2018-03-251-20/+22
* Added completion for redirection to every commandKevin Van Brunt2018-03-251-2/+57
* Added functions to set realine line buffer and cursor offsetKevin Van Brunt2018-03-251-25/+45
* Handling redirection characters in tab completion tokenizingKevin Van Brunt2018-03-251-16/+64
* Updated documentationKevin Van Brunt2018-03-253-8/+6
* Merge branch 'master' into new_quoted_completionKevin Van Brunt2018-03-253-7/+11
|\
| * Merge pull request #328 from python-cmd2/redirect_quotedTodd Leonhardt2018-03-241-4/+9
| |\
| | * Allow quoted file paths when redirecting with < and >Kevin Van Brunt2018-03-241-4/+9
| |/
| * Added link to video of Florida Pycon 2017 presentation on cmd2Todd Leonhardt2018-03-232-3/+2
* | Moving toward properly tab completing redirectionsKevin Van Brunt2018-03-251-20/+30
* | Made subcommand specific completion work with Python 2 in the examplesKevin Van Brunt2018-03-243-36/+39
* | Remove unneeded use of functools.partialKevin Van Brunt2018-03-241-1/+1
* | Moved all completer functions into cmd2 since they will now depend on cmd2.al...Kevin Van Brunt2018-03-241-643/+530
* | Removed unused variableKevin Van Brunt2018-03-241-1/+0
* | Moving codeKevin Van Brunt2018-03-241-16/+18
* | Simplifying the code by calling readline functions directly.Kevin Van Brunt2018-03-241-86/+119
* | Renamed variable for clarityKevin Van Brunt2018-03-241-10/+10
* | Reversed logic for readabilityKevin Van Brunt2018-03-241-9/+9
* | Returning both the unquoted and raw tokens for tab completionKevin Van Brunt2018-03-241-37/+45
* | Merge branch 'master' into new_quoted_completionKevin Van Brunt2018-03-232-5/+7
|\ \ | |/
| * Fixed check for whether a subcommand was enteredKevin Van Brunt2018-03-232-6/+8
* | Using shlex.split() again since filenames were being split on periodsKevin Van Brunt2018-03-231-2/+1
* | Fixed issue with negative indexesKevin Van Brunt2018-03-231-31/+21
* | Improved token parsing for tab completionKevin Van Brunt2018-03-231-11/+25
* | Updated documentationKevin Van Brunt2018-03-231-2/+3
* | 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-232-208/+177
* | 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
* | Fixed unit testsKevin Van Brunt2018-03-221-5/+10
* | Renamed exclude_from_help to hidden_commandsKevin Van Brunt2018-03-224-57/+85
* | Make sure completion tokens are never emptyKevin Van Brunt2018-03-221-12/+14
* | Merge branch 'master' into new_quoted_completionKevin Van Brunt2018-03-221-1/+1
|\ \ | |/
| * Updated CONTRIBUTING to recommend using the --forked flag when doing code cov...Todd Leonhardt2018-03-211-1/+1
* | Increased coverage of completion testsKevin Van Brunt2018-03-221-56/+105
* | Fixed Python 2.7 issueKevin Van Brunt2018-03-211-2/+6
* | All existing tab completion unit tests workKevin Van Brunt2018-03-211-166/+42
* | Finished subcommand completion unit testsKevin Van Brunt2018-03-211-80/+28
* | Added better analysis of tab completing shell commandsKevin Van Brunt2018-03-211-21/+19
* | Finished basic, flag, and index completion unit testsKevin Van Brunt2018-03-211-67/+36
* | Fixed all path matching unit testsKevin Van Brunt2018-03-211-25/+7
* | More unit test updatesKevin Van Brunt2018-03-212-19/+20