Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update CHANGELOG with info on recent bug fix PR | Todd Leonhardt | 2020-11-17 | 1 | -0/+1 |
| | |||||
* | Fixed bug where setting always_show_hint=True did not show a hint when ↵settable_hint | Kevin Van Brunt | 2020-11-12 | 1 | -0/+4 |
| | | | | completing Settables | ||||
* | Update CHANGELOG prior to a release1.4.0 | Todd Leonhardt | 2020-11-11 | 1 | -1/+3 |
| | |||||
* | Fixed tab completion crash on Windowswin_tab_crash | Kevin Van Brunt | 2020-11-11 | 1 | -0/+4 |
| | |||||
* | Updated change log for release1.3.11 | Kevin Van Brunt | 2020-10-01 | 1 | -1/+1 |
| | |||||
* | Fixed issue where instantiating more than one cmd2-based class which uses ↵duplicate_subcommand | Kevin Van Brunt | 2020-09-30 | 1 | -0/+2 |
| | | | | | | the @as_subcommand_to decorator resulted in duplicated help text in the base command the subcommands belong to. | ||||
* | Fixed issue where quoted redirectors and terminators in aliases and macros ↵ | Kevin Van Brunt | 2020-09-30 | 1 | -0/+5 |
| | | | | | | were not being restored when read from a startup script. | ||||
* | Merge branch 'master' into silence | Kevin Van Brunt | 2020-09-17 | 1 | -1/+3 |
|\ | |||||
| * | Changes default category to be heritable by default - meaning that ↵ | Eric Lin | 2020-09-11 | 1 | -0/+2 |
| | | | | | | | | | | | | subclasses will inherit the parent class's default category. Adds optional flag to disable heritability. | ||||
* | | Added --silent flag to alias/macro create. | Kevin Van Brunt | 2020-09-10 | 1 | -0/+4 |
|/ | | | | Added --with_silent flag to alias/macro list. | ||||
* | argparse tab completion now groups flag names which run the same action. ↵ | Kevin Van Brunt | 2020-09-09 | 1 | -0/+2 |
| | | | | | | Optional flags are wrapped in brackets like it is done in argparse usage text. | ||||
* | Added always_show_hint setting | Kevin Van Brunt | 2020-09-05 | 1 | -0/+8 |
| | | | | Fixed issue where flag names weren't always sorted correctly in argparse tab completion | ||||
* | Added CommandSet.on_unregistered() | Kevin Van Brunt | 2020-09-03 | 1 | -3/+8 |
| | |||||
* | Added on_registered() callback to CommandSet | Kevin Van Brunt | 2020-09-01 | 1 | -0/+5 |
| | |||||
* | Fixed issue where subcommand added with @as_subcommand_to decorator did not ↵ | Kevin Van Brunt | 2020-08-27 | 1 | -0/+9 |
| | | | | | | display help when called with -h/--help. 'add_help=False' no longer has to be passed to parsers used in @as_subcommand_to decorator. | ||||
* | the with_argparse() decorator was incorrectly using a parsed statement ↵1.3.7 | Eric Lin | 2020-08-27 | 1 | -0/+5 |
| | | | | object to search for the original function arguments. Switched to search for the original statement value instead | ||||
* | Fixed typo in change log | Kevin Van Brunt | 2020-08-27 | 1 | -1/+2 |
| | |||||
* | Updated change log for release1.3.6 | Kevin Van Brunt | 2020-08-27 | 1 | -1/+1 |
| | |||||
* | The functions cmd2 adds to Namespaces (get_statement() and get_handler()) ↵ | Kevin Van Brunt | 2020-08-26 | 1 | -0/+8 |
| | | | | | | | are now Cmd2AttributeWrapper objects named cmd2_statement and cmd2_handler. This makes it easy to filter out which attributes in an argparse.Namespace were added by cmd2. | ||||
* | Updated change log and docs for release1.3.5 | Kevin Van Brunt | 2020-08-25 | 1 | -1/+1 |
| | |||||
* | Fixed RecursionError when printing an argparse.Namespace caused by custom ↵ | Kevin Van Brunt | 2020-08-25 | 1 | -0/+6 |
| | | | | | | attribute cmd2 was adding Added get_statement() function to argparse.Namespace which returns __statement__ attribute | ||||
* | Updated change log for release1.3.4 | Kevin Van Brunt | 2020-08-20 | 1 | -1/+5 |
| | |||||
* | Fixed AttributeError when CommandSet that uses as_subcommand_to decorator is ↵ | Kevin Van Brunt | 2020-08-19 | 1 | -0/+5 |
| | | | | loaded during cmd2.Cmd.__init__(). | ||||
* | Updated changelog with 1.3.3 release date1.3.3 | Kevin Van Brunt | 2020-08-13 | 1 | -1/+1 |
| | |||||
* | Fixed tab completion bug when using CompletionItem on an argument whose ↵ | Kevin Van Brunt | 2020-08-13 | 1 | -0/+1 |
| | | | | metavar is a tuple | ||||
* | Fixed changelog comment | Todd Leonhardt | 2020-08-12 | 1 | -1/+1 |
| | |||||
* | Add unit test and update CHANGELOG | Todd Leonhardt | 2020-08-12 | 1 | -0/+1 |
| | |||||
* | When passing a ns_provider to an argparse command, will now attempt to ↵ | Eric Lin | 2020-08-12 | 1 | -0/+2 |
| | | | | resolve the correct CommandSet instance for self. If not, it'll fall back and pass in the cmd2 app | ||||
* | Breaking change: Removed cmd2 app as a required second parameter to | Eric Lin | 2020-08-12 | 1 | -0/+5 |
| | | | | | | CommandSet command functions (do_, complete_, help_). Renamed install_command_set and uninstall_command_set to register_command_set and unregister_command_set. | ||||
* | Updated CHANGELOG | Eric Lin | 2020-08-11 | 1 | -1/+2 |
| | |||||
* | Adding explicit python 3.5.3 test to nox, travis. | Eric Lin | 2020-08-10 | 1 | -0/+8 |
| | | | | Copied 3.5.4 definition of typing.Deque | ||||
* | Will now traverse down CommandSet inheritance tree to find all leaf descendants.1.3.2 | Eric Lin | 2020-08-10 | 1 | -1/+4 |
| | | | | | | CommandSet now has a check to ensure it is only registered with one cmd2.Cmd instance at a time. Adds function to find command set by type and by command name | ||||
* | Updated change log | Kevin Van Brunt | 2020-08-07 | 1 | -3/+9 |
| | |||||
* | Updated CHANGELOG1.3.1 | Eric Lin | 2020-08-06 | 1 | -0/+7 |
| | |||||
* | Marked with_arparser_and_unknown_args deprecated and consolidated | Eric Lin | 2020-08-04 | 1 | -2/+5 |
| | | | | implementation as an option to with_argparser instead. | ||||
* | Updated changelog | Eric Lin | 2020-08-04 | 1 | -0/+5 |
| | |||||
* | Updated release date for 1.2.1 in CHANGELOG1.2.1 | Todd Leonhardt | 2020-07-14 | 1 | -2/+2 |
| | |||||
* | Fix a dependency version requirement which was too restrictive and required ↵ | Todd Leonhardt | 2020-07-13 | 1 | -0/+4 |
| | | | | bleeding edge for no good reason | ||||
* | Updated CHANGELOG | Todd Leonhardt | 2020-07-13 | 1 | -0/+2 |
| | |||||
* | Update release date in CHANGELOG | Todd Leonhardt | 2020-07-13 | 1 | -1/+1 |
| | |||||
* | Updated CHANGELOG | Todd Leonhardt | 2020-07-12 | 1 | -0/+6 |
| | |||||
* | Added 1.1 release date to CHANGELOG1.1.0 | Todd Leonhardt | 2020-06-06 | 1 | -1/+1 |
| | |||||
* | Updated change log | Kevin Van Brunt | 2020-06-01 | 1 | -0/+2 |
| | |||||
* | Updated change log | Kevin Van Brunt | 2020-05-28 | 1 | -1/+10 |
| | |||||
* | Fixed issue where subcommand usage text could contain a subcommand alias ↵ | Kevin Van Brunt | 2020-04-23 | 1 | -0/+2 |
| | | | | instead of the actual name | ||||
* | Added table creation feature to change log | Kevin Van Brunt | 2020-04-22 | 1 | -0/+6 |
| | |||||
* | run_pyscript now passes a keyword arg to do_py instead of using a hidden ↵ | Kevin Van Brunt | 2020-04-21 | 1 | -1/+3 |
| | | | | argparse flag | ||||
* | cmd2 now considers ipy a pyscript environment | Kevin Van Brunt | 2020-04-20 | 1 | -2/+4 |
| | |||||
* | Updated change log | Kevin Van Brunt | 2020-04-20 | 1 | -0/+5 |
| | |||||
* | Updated change log text | Kevin Van Brunt | 2020-04-06 | 1 | -1/+1 |
| |