summaryrefslogtreecommitdiff
path: root/cmd2.py
Commit message (Expand)AuthorAgeFilesLines
* When calling a submenu command from a higher level, strip off the first argum...Calvin Lobo2018-02-041-2/+3
* Changed arg name in _complete_from_cmd() so it doesn't shadow name from outer...Calvin Lobo2018-02-041-15/+15
* Merge branch 'master' into feature/submenuTodd Leonhardt2018-02-031-237/+404
|\
| * Improved argument processing docsTodd Leonhardt2018-02-011-1/+1
| * Fixed issue with automated transcript generation via "history -t"Todd Leonhardt2018-01-291-0/+7
| * redirect_stderr wasn't added to contextlib until Python 3.5Todd Leonhardt2018-01-221-4/+6
| * help command temporarily redirects sys.stdout and sys.stderr to self.stdout f...Todd Leonhardt2018-01-221-11/+23
| * Renamed @with_argument_parser decorator to @with_argparserTodd Leonhardt2018-01-211-3/+3
| * History enhancementsTodd Leonhardt2018-01-201-6/+37
| * Added unit tests for newly-overridden complete() methodTodd Leonhardt2018-01-201-0/+8
| * Added unit tests for sub-commandsTodd Leonhardt2018-01-201-1/+1
| * Tab-completion of subcommand names is now supportedTodd Leonhardt2018-01-201-9/+99
| * Added links to docs and examples to CHANGELOG.mdTodd Leonhardt2018-01-201-1/+1
| * Added support for argparse sub-commands when using cmd2 decoratorsTodd Leonhardt2018-01-201-2/+20
| * Improved how new argparse-based decorators provide helpTodd Leonhardt2018-01-171-30/+21
| * Cleanup of documentation and examplesTodd Leonhardt2018-01-171-1/+0
| * Fix bug which prevented multiple history commands from being runkotfu2018-01-161-1/+1
| * do_edit() no longer edits history, just files #252kotfu2018-01-161-77/+5
| * Remove do_save() and do_run() for #252kotfu2018-01-161-60/+8
| * Implement -o, -r, and -e options for issue #252Jared Crapo2018-01-151-10/+42
| * cmdenvironment command has been removed and its functionality now exists as a...Todd Leonhardt2018-01-151-16/+25
| * show command has been removedTodd Leonhardt2018-01-151-13/+17
| * __relative_load command is now hidden from help menu by defaultTodd Leonhardt2018-01-151-1/+1
| * Argument parsing and support currention functionality for #252kotfu2018-01-151-12/+16
| * Renamed new decorator to @with_argparser_and_unknown_args to make it more des...Todd Leonhardt2018-01-151-1/+1
| * Changed @with_argument_parser to only pass single argument to commandsTodd Leonhardt2018-01-151-20/+46
| * Just improved a few comments which had become outdatedTodd Leonhardt2018-01-151-5/+6
| * Replaced @options decorator with @with_argument_list for do_editTodd Leonhardt2018-01-151-7/+11
| * Made a couple cleanup changesTodd Leonhardt2018-01-151-12/+11
| * Merge branch 'arglist' of github.com:python-cmd2/cmd2 into arglistkotfu2018-01-141-1/+5
| |\
| | * Fixed do_history unit tests and implementationTodd Leonhardt2018-01-151-1/+1
| | * Fixed @with_argument_decorator so that built-in help text is preservedTodd Leonhardt2018-01-151-0/+4
| * | convert do_pyscript() to use @with_argument_listkotfu2018-01-141-9/+5
| * | convert do_show() to argparsekotfu2018-01-141-12/+9
| |/
| * convert do_history() to argparsekotfu2018-01-141-20/+16
| * remove use_argument_list attributekotfu2018-01-141-6/+2
| * refactor onecmd() to use parse_quoted_string()kotfu2018-01-141-7/+1
| * Convert built-in commands to argparsing for #250kotfu2018-01-141-13/+17
| * more robust argparse and arglist decoratorskotfu2018-01-141-16/+18
| * add use_argument_list settingkotfu2018-01-121-1/+13
| * new @with_argument_list decoratorkotfu2018-01-121-0/+18
| * @with_argument_parser now passes an arglist instead of a stringkotfu2018-01-121-1/+1
| * Fix a nasty bug in @with_argument_parserJared Crapo2018-01-101-3/+3
| * Set prog in argparser based on the name of the functionkotfu2018-01-071-1/+5
| * Properly set docstring so it contains help messagekotfu2018-01-071-1/+9
| * Remove leftover debugging codekotfu2018-01-071-2/+0
| * Merge branch 'master' of github.com:python-cmd2/cmd2 into argparsekotfu2018-01-071-5/+5
| |\
| | * Enabled Python 3.7 testing on Travis CITodd Leonhardt2018-01-061-5/+5
| * | Default posix and quote removal working.kotfu2018-01-071-12/+10
| * | Merge branch 'master' of github.com:python-cmd2/cmd2 into argparsekotfu2018-01-071-12/+28
| |\ \ | | |/