summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into 2.02.0Todd Leonhardt2021-02-141-1/+1
|\
| * Update modular_commands.rstKory Gill2021-02-131-1/+1
| | | | | | Minor fix to use cmd2 intead of cmd in example text.
* | Merge branch 'master' into 2.0Kevin Van Brunt2021-01-294-6/+18
|\ \ | |/
| * Updated documentationmiscKevin Van Brunt2021-01-291-0/+9
| |
| * Merge branch 'master' into pr/docs/md/brokenlinkTodd Leonhardt2021-01-282-5/+8
| |\
| | * Merge branch 'master' into pr/doc/commandsTodd Leonhardt2021-01-281-3/+6
| | |\
| | | * Update conditional pyreadline3 dependency for WinKyle King2021-01-271-3/+6
| | | |
| | * | Fix doc in docs/features/commands.rstKevin "Tristate Tom" Weiss2021-01-281-2/+2
| | |/ | | | | | | | | | finis should be finish. A missing double quote (") for the docstring in the `do_bail` example makes formatting incorrect.
| * | docs/features/modular_commands: fix broken linkKevin "Tristate Tom" Weiss2021-01-281-1/+1
| |/ | | | | | | | | | | | | | | | | I guess the examples structure has changed since the docs. I suggest changing the broken link: https://github.com/python-cmd2/cmd2/tree/master/plugins/command_sets/examples to https://github.com/python-cmd2/cmd2/tree/master/examples/modular_commands Maybe also hiding the full link is nice.
* | Merge branch 'master' into 2.0Kevin Van Brunt2021-01-221-1/+1
|\ \ | |/
| * Fix wrong superclass in docKilian2021-01-021-1/+1
| |
* | Merge branch 'master' into 2.0Todd Leonhardt2020-11-114-14/+15
|\ \ | |/ | | | | | | # Conflicts: # CHANGELOG.md
| * Replace with_argparser_and_unknown_args in docsKyle King2020-11-081-11/+8
| |
| * Use set --verbose instead of -v in docsKyle King2020-10-311-2/+2
| |
| * Fixed error in set --long, which should be set -vKyle King2020-10-311-2/+2
| | | | | | | | | | (Cmd) set --long Usage: set [-h] [-v] [param] [value] Error: unrecognized arguments: --long
| * typoStratos Gerakakis2020-10-101-1/+1
| |
| * Fixed issue where quoted redirectors and terminators in aliases and macros ↵Kevin Van Brunt2020-09-301-0/+4
| | | | | | | | | | | | were not being restored when read from a startup script.
* | Added section to completion docs about read_input() functionKevin Van Brunt2020-09-091-0/+12
| |
* | Merge branch '2.0' into read_inputKevin Van Brunt2020-09-091-9/+10
|\ \
| * \ Merge branch 'master' into 2.0Kevin Van Brunt2020-09-091-9/+10
| |\ \ | | |/
| | * Updated documentation about set commandKevin Van Brunt2020-09-091-9/+10
| | |
* | | Moved two classes from cmd2.py to utils.py.Kevin Van Brunt2020-09-092-23/+27
| | |
* | | Made CustomCompletionSettings public since it's optionally passed to public ↵Kevin Van Brunt2020-09-051-4/+23
| | | | | | | | | | | | method cmd2.Cmd.complete().
* | | Merge branch '2.0' into read_inputKevin Van Brunt2020-09-031-6/+34
|\ \ \ | |/ /
| * | Merge branch 'master' into 2.0Kevin Van Brunt2020-09-031-6/+34
| |\ \ | | |/
| | * Fixed type hints in example code1.3.9Kevin Van Brunt2020-09-031-1/+1
| | |
| | * Documented CommandSet event handlersKevin Van Brunt2020-09-031-1/+29
| | |
| | * Updated docsKevin Van Brunt2020-09-011-4/+4
| | |
* | | Fixed docs errorKevin Van Brunt2020-09-011-0/+4
|/ /
* | Merge branch 'master' into 2.0Kevin Van Brunt2020-08-281-2/+2
|\ \ | |/
| * Fixed issue where subcommand added with @as_subcommand_to decorator did not ↵Kevin Van Brunt2020-08-271-2/+2
| | | | | | | | | | | | display help when called with -h/--help. 'add_help=False' no longer has to be passed to parsers used in @as_subcommand_to decorator.
* | Removed Namespace.__statement__Kevin Van Brunt2020-08-271-6/+2
| |
* | Merge branch 'master' into 2.0Kevin Van Brunt2020-08-273-11/+13
|\ \ | |/
| * The functions cmd2 adds to Namespaces (get_statement() and get_handler()) ↵Kevin Van Brunt2020-08-263-11/+13
| | | | | | | | | | | | | | 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.
* | Merge branch 'master' into 2.0Kevin Van Brunt2020-08-251-1/+17
|\ \ | |/
| * Updated change log and docs for release1.3.5Kevin Van Brunt2020-08-251-0/+15
| |
| * Fixed RecursionError when printing an argparse.Namespace caused by custom ↵Kevin Van Brunt2020-08-251-1/+2
| | | | | | | | | | | | attribute cmd2 was adding Added get_statement() function to argparse.Namespace which returns __statement__ attribute
* | Merge branch 'master' into 2.0Kevin Van Brunt2020-08-207-8/+80
|\ \ | |/
| * Updated documentation with more explicit discussions on testingEric Lin2020-08-207-8/+80
| | | | | | | | Added unit test to verify command name validation updates.
* | Replaced choices_function / choices_method with choices_provider.Kevin Van Brunt2020-08-133-19/+13
|/ | | | | | | | | Replaced completer_function / completer_method with completer. ArgparseCompleter now always passes cmd2.Cmd or CommandSet instance as the self argument to choices_provider and completer functions. Moved basic_complete from utils into cmd2.Cmd class. Moved CompletionError to exceptions.py
* Breaking change: Removed cmd2 app as a required second parameter toEric Lin2020-08-121-34/+35
| | | | | | CommandSet command functions (do_, complete_, help_). Renamed install_command_set and uninstall_command_set to register_command_set and unregister_command_set.
* Verify that a completer function is defined in a CommandSet beforeEric Lin2020-08-062-1/+5
| | | | | | | | | | passing it a CommandSet instance. Search for a CommandSet instance that matches the completer's parent class type.` Resolves Issue #967 Renamed isolated_tests directory to tests_isolated for better visual grouping. Added some exception documentation
* Marked with_arparser_and_unknown_args deprecated and consolidatedEric Lin2020-08-041-1/+1
| | | | implementation as an option to with_argparser instead.
* Minor formatting fixes. Injecting a function into namespace objects before ↵Eric Lin2020-08-041-3/+3
| | | | passing to command handlers to access sub-command handlers
* Fix a couple doc8 warningsTodd Leonhardt2020-08-041-5/+7
|
* Suggested PR Fixes.Eric Lin2020-08-041-5/+5
| | | | | sub-commande => subcommand Added help/aliases to `as_subcommand_to` decorator.
* Adds support for injectable subcommands as part of CommandSetEric Lin2020-08-041-0/+126
| | | | | | load/unload. Updated examples and documentation to include discussion of injectable sub-commands.
* updated importsEric Lin2020-08-043-0/+214
| | | | Added additional documentation
* Fixes to sphinx generationEric Lin2020-08-042-0/+6
|
* Fixed hook documentationKevin Van Brunt2020-07-171-9/+9
|