Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Added configurable padding to BorderedTable/AlternatingTable | Kevin Van Brunt | 2020-04-19 | 1 | -1/+1 | |
| | | | | Updated comments | |||||
* | Initial commit of table creation API | Kevin Van Brunt | 2020-04-09 | 1 | -0/+77 | |
| | ||||||
* | Added documentation about decorator order and updated an example | Todd Leonhardt | 2020-04-09 | 1 | -6/+23 | |
| | | | | | Also: - Deal with warnings when building docs with Sphinx 3.0.0 | |||||
* | Update scripting docs. Closes #765. | kotfu | 2020-02-28 | 1 | -13/+19 | |
| | ||||||
* | Updated python scripting exmaple to illustrate how | Eric Lin | 2020-02-24 | 2 | -21/+25 | |
| | | | | | stdout/stderr is automatically captured in CommandResult during python scripting. Fixes #898 | |||||
* | Added apply_style to CompletionError | Kevin Van Brunt | 2020-02-18 | 1 | -2/+1 | |
| | | | | Simplified error class structure in argparse_completer.py | |||||
* | Added use of CompletionError to basic completion example | Kevin Van Brunt | 2020-02-18 | 1 | -6/+23 | |
| | ||||||
* | Made CompletionError exception available to non-argparse tab completion | Kevin Van Brunt | 2020-02-17 | 1 | -2/+2 | |
| | ||||||
* | Fixed missing import | Kevin Van Brunt | 2020-02-13 | 1 | -0/+2 | |
| | ||||||
* | Updated documentation | Kevin Van Brunt | 2020-02-13 | 1 | -5/+5 | |
| | ||||||
* | Finished argparse completion example | Kevin Van Brunt | 2020-02-13 | 1 | -21/+49 | |
| | ||||||
* | Wrote examples for CompletionError and CompletionItem | Kevin Van Brunt | 2020-02-13 | 1 | -13/+34 | |
| | ||||||
* | Start of new argparse completion example | Kevin Van Brunt | 2020-02-13 | 1 | -0/+73 | |
| | ||||||
* | Removed dash from 'tab complete' string | Kevin Van Brunt | 2020-02-13 | 1 | -6/+6 | |
| | ||||||
* | Removed use of argparse from basic completion example | Kevin Van Brunt | 2020-02-13 | 1 | -46/+30 | |
| | ||||||
* | Overhauling tab completion examples | Kevin Van Brunt | 2020-02-12 | 3 | -272/+29 | |
| | ||||||
* | Updated release data for 1.0.0-rc1 in preparation for a release candidate | Todd Leonhardt | 2020-02-07 | 2 | -2/+2 | |
| | | | | | Also: - Updated some very outdated comments in transcript files | |||||
* | Updated plumbum example | Kevin Van Brunt | 2020-02-07 | 1 | -32/+33 | |
| | ||||||
* | Updated changelog to address removal of ansi.FG_COLORS and ansi.BG_COLORS ↵ | Todd Leonhardt | 2020-02-07 | 1 | -8/+8 | |
| | | | | | | | and mention their replacement by ansi.fg and ansi.bg enums Also: - Use ansi.fg in async_printing.py and README.md | |||||
* | Having two parallel datastructures each for foreground and background colors ↵ | Todd Leonhardt | 2020-02-06 | 3 | -7/+6 | |
| | | | | | | felt really clunky - now we just have one The Enum classes are now smart and deal with it all. | |||||
* | Added convenience `ansi.fg` and `ansi.bg` enums of foreground and background ↵ | Todd Leonhardt | 2020-02-06 | 1 | -2/+2 | |
| | | | | | | colors which style() can now optionally use This is to make it easier to autocomplete color names in an IDE | |||||
* | Fixed example code | Kevin Van Brunt | 2020-02-06 | 1 | -1/+1 | |
| | ||||||
* | Documentation updates | kotfu | 2020-02-05 | 1 | -3/+7 | |
| | ||||||
* | Updated documentation | Kevin Van Brunt | 2020-02-05 | 1 | -1/+1 | |
| | ||||||
* | Removed unnecessary inheritance from object | Kevin Van Brunt | 2020-02-04 | 1 | -1/+1 | |
| | ||||||
* | Updated example transcripts | Todd Leonhardt | 2020-02-04 | 2 | -2/+2 | |
| | ||||||
* | Added cmd2.utils.Settable to the cmd2 namespace and updated examples and docs | Todd Leonhardt | 2020-02-04 | 10 | -11/+32 | |
| | ||||||
* | Renamed locals_in_py to self_in_py | Todd Leonhardt | 2020-01-27 | 8 | -8/+8 | |
| | | | | This more accurately reflects what it controls | |||||
* | Made three public attributes of cmd2.Cmd no longer settable at runtime by ↵ | Todd Leonhardt | 2020-01-27 | 3 | -7/+3 | |
| | | | | | | | | | end users The 3 attributes are: - continuation_prompt - locals_in_py - prompt | |||||
* | Improved example in initialiation docs | Todd Leonhardt | 2020-01-26 | 1 | -0/+60 | |
| | ||||||
* | Merge branch 'master' into generating_output_docs | Todd Leonhardt | 2020-01-09 | 5 | -22/+36 | |
|\ | | | | | | | | | | | # Conflicts: # docs/features/generating_output.rst # docs/features/settings.rst | |||||
| * | Merge branch 'master' into ansi_to_style | Kevin Van Brunt | 2020-01-07 | 1 | -6/+20 | |
| |\ | ||||||
| | * | Updated dynamic commands example to add help category | Kevin Van Brunt | 2020-01-06 | 1 | -6/+20 | |
| | | | ||||||
| * | | Changed allow_ansi to allow_style for accuracy in what types of ANSI escape ↵ | Kevin Van Brunt | 2019-12-19 | 4 | -16/+16 | |
| |/ | | | | | | | sequences are handled | |||||
* | | Merge branch 'master' into generating_output_docs | kotfu | 2019-11-29 | 1 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Fixed bug where a redefined ansi.style_error was not being used in all cmd2 ↵ | Kevin Van Brunt | 2019-11-27 | 1 | -2/+2 | |
| | | | | | | | | files | |||||
* | | Show usage of colorama for ansi text styling | kotfu | 2019-11-29 | 1 | -1/+25 | |
| | | ||||||
* | | Remove unused variable | kotfu | 2019-11-27 | 1 | -1/+1 | |
|/ | ||||||
* | Added capability to override the argument parser class used by cmd2 built-in ↵ | Kevin Van Brunt | 2019-11-19 | 2 | -0/+59 | |
| | | | | commands | |||||
* | Minor update to embedded python shells docs | Todd Leonhardt | 2019-11-03 | 1 | -1/+1 | |
| | ||||||
* | Improved documentation for Argument Parsing and Tab-Completion | Todd Leonhardt | 2019-11-03 | 2 | -0/+102 | |
| | | | | | Also: - Added a couple examples | |||||
* | Moving a bit of code around to shrink cmd2.py | Kevin Van Brunt | 2019-10-31 | 1 | -1/+1 | |
| | | | | | This includes moving cmd2 decorators into a new file called decorators.py Moved some constants from cmd2.py to constants.py | |||||
* | Removed all instances where a parser's prog attribute was being set since ↵ | Kevin Van Brunt | 2019-10-30 | 2 | -3/+3 | |
| | | | | this is no longer needed | |||||
* | Merge branch 'master' into doc_additions | Todd Leonhardt | 2019-09-17 | 1 | -0/+31 | |
|\ | ||||||
| * | Added a basic example for dynamically adding do_* commands in a loop | Todd Leonhardt | 2019-09-15 | 1 | -0/+31 | |
| | | ||||||
* | | Add documentation and example for removing built-in commands | kotfu | 2019-08-23 | 1 | -2/+2 | |
|/ | | | | For #765 | |||||
* | Made example update the prompt less frequently | Kevin Van Brunt | 2019-08-01 | 1 | -4/+18 | |
| | ||||||
* | Fix flake8 error due to extra blank line in example | Todd Leonhardt | 2019-07-23 | 1 | -1/+0 | |
| | ||||||
* | Fixed bad practice of using print() and replaced with self.poutput() | Todd Leonhardt | 2019-07-23 | 1 | -5/+5 | |
| | ||||||
* | Added another command to the unicode command name example | Todd Leonhardt | 2019-07-23 | 1 | -0/+4 | |
| |