summaryrefslogtreecommitdiff
path: root/examples/tab_autocompletion.py
Commit message (Expand)AuthorAgeFilesLines
* Renamed ArgParser to Cmd2ArgumentParser to make it clear it's a derived class...Kevin Van Brunt2019-07-181-3/+3
* Renamed Cmd2ArgParser to ArgParserKevin Van Brunt2019-07-121-3/+3
* More argparse completer unit testsKevin Van Brunt2019-07-071-6/+6
* Moved all custom argparse classes intended for normal development to argparse...Kevin Van Brunt2019-07-071-3/+2
* Fixed unit testsKevin Van Brunt2019-07-051-259/+0
* Fixing examplesKevin Van Brunt2019-07-041-39/+25
* Removed copyright headers from source files and updated LICENSE with current ...Kevin Van Brunt2019-06-071-3/+0
* Refactor exit_code implementationTodd Leonhardt2019-05-201-1/+2
* Improved code coverageKevin Van Brunt2019-05-071-1/+1
* Updated the examples to illustrate sorting CompletionItemsKevin Van Brunt2019-02-271-2/+5
* Made cmd2_app a positional and required argument of AutoCompleter.Kevin Van Brunt2019-02-231-1/+4
* Fixed examplesKevin Van Brunt2019-02-081-2/+2
* Fix flake8 issuesTodd Leonhardt2018-12-061-21/+21
* Added code to handle -- in argparse completerKevin Van Brunt2018-10-101-1/+1
* Merge remote-tracking branch 'origin/master' into argparse_remainderEric Lin2018-10-061-4/+4
|\
| * Using sub-command instead of subcommand where possible to be consistent with ...Kevin Van Brunt2018-10-051-4/+4
* | Fixed a few edge cases:Eric Lin2018-10-061-0/+2
* | Added handling of nargs=argparse.REMAINDER in both AutoCompleter and Argparse...Eric Lin2018-10-061-1/+1
|/
* ACHelpFormatter now inherits from argparse.RawTextHelpFormatter to make it ea...Kevin Van Brunt2018-08-241-7/+4
* Updated argparse_completer to automatically set the matches_sorted flag for t...Eric Lin2018-08-011-5/+7
* Added a check to verify the existence of a descriptive header. Added a consta...Eric Lin2018-06-131-3/+2
* Adds possible support for tabular tab completion results.Eric Lin2018-06-061-1/+17
* Fix import stragglerskotfu2018-05-231-2/+3
* Standardize cmd2 imports in tests and exampleskotfu2018-05-231-16/+15
* Changed some unit tests to use pytest-mock instead of mocker/monkeypatch beca...Eric Lin2018-05-191-3/+12
* Some fixes to autocompleter to make it easier to do delimited and file comple...Eric Lin2018-05-181-1/+19
* Merge branch 'bash_completion' into bash_to_pyscriptEric Lin2018-05-021-2/+2
|\
| * Removed the expensive imports from cmd2/__init__.pyEric Lin2018-04-251-2/+2
* | Added support for customizing the pyscript bridge pystate object name.Eric Lin2018-05-021-0/+1
* | Added more tests exercising the pyscript bridge.Eric Lin2018-04-301-0/+1
* | Added support for translating function positional and keyword arguments into ...Eric Lin2018-04-281-1/+1
|/
* Added support for using cmd2 application class methods as an argument complet...Eric Lin2018-04-231-1/+5
* Addressed PR comments. Simplified some of the implementation per PR comments.Eric Lin2018-04-231-111/+85
* Added some documentation related to the latest changes.Eric Lin2018-04-211-1/+9
* Changed cmd2 to use autocompleter by default for all argparse commands. Not a...Eric Lin2018-04-201-9/+89
* Started adding type hintsTodd Leonhardt2018-04-191-2/+1
* Identified and marked a few blocks of code that can't be reached during unit ...Eric Lin2018-04-191-1/+5
* Addresses comments on #362Eric Lin2018-04-191-12/+12
* Merge remote-tracking branch 'origin/master' into autocompleterEric Lin2018-04-181-2/+1
* Some minor tweaks to AutoCompleter handling a collection of index-based funct...Eric Lin2018-04-171-1/+89
* Added unit tests for AutoCompleter.Eric Lin2018-04-161-11/+8
* Added more advanced/complex autocompleter examples.Eric Lin2018-04-161-20/+174
* Matched changes in the python3 branch.Eric Lin2018-04-151-1/+1
* * AutoCompleterEric Lin2018-04-151-8/+19
* Started working on an example for autocompleter usage.Eric Lin2018-04-141-0/+175