Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated docs | Kevin Van Brunt | 2021-06-25 | 1 | -0/+1 |
| | |||||
* | Removed cmd2.Cmd.quit_on_sigint. | Kevin Van Brunt | 2021-04-30 | 1 | -2/+0 |
| | |||||
* | Renamed use_ipython keyword parameter of cmd2.Cmd.__init__() to include_ipy. | Kevin Van Brunt | 2021-03-30 | 1 | -1/+1 |
| | | | | | | | | | | Added include_py keyword parameter to cmd2.Cmd.__init__(). If False, then the py command will not be available. Removed ability to run Python commands from the command line with py. Made banners and exit messages of Python and IPython consistent. Changed utils.is_text_file() to raise OSError if file cannot be read. | ||||
* | Ctrl-C now stops a running text script instead of just the current script ↵ | Kevin Van Brunt | 2020-03-26 | 1 | -2/+2 |
| | | | | command | ||||
* | Removed dash from 'tab complete' string | Kevin Van Brunt | 2020-02-13 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' into color_autocomplete | Todd Leonhardt | 2020-02-06 | 1 | -1/+1 |
|\ | |||||
| * | Merge branch 'master' into doc_streamline | kotfu | 2020-02-06 | 1 | -2/+5 |
| |\ | | | | | | | | | | | | | # Conflicts: # docs/features/settings.rst | ||||
| * | | Clean up class and method references | kotfu | 2020-02-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | - In docs/api/cmd.rst, the `cmd2.Cmd` class was defined as `cmd2.cmd2.Cmd`, which required the extraneous `cmd2` every time we referenced it. This extra `cmd2` is no longer required. - always refer to a bare cmd2 using ``cmd2`` per our documentation conventions | ||||
* | | | Having two parallel datastructures each for foreground and background colors ↵ | Todd Leonhardt | 2020-02-06 | 1 | -4/+3 |
| |/ |/| | | | | | | | | | felt really clunky - now we just have one The Enum classes are now smart and deal with it all. | ||||
* | | Added cmd2.utils.Settable to the cmd2 namespace and updated examples and docs | Todd Leonhardt | 2020-02-04 | 1 | -2/+5 |
|/ | |||||
* | Attempt to make "help -v" more discoverable by changing the default help text | Todd Leonhardt | 2020-01-29 | 1 | -0/+2 |
| | |||||
* | Renamed locals_in_py to self_in_py | Todd Leonhardt | 2020-01-27 | 1 | -3/+3 |
| | | | | 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 | 1 | -1/+1 |
| | | | | | | | | | end users The 3 attributes are: - continuation_prompt - locals_in_py - prompt | ||||
* | Deleted info on the instance attributes which might only be used in ↵ | Todd Leonhardt | 2020-01-27 | 1 | -19/+2 |
| | | | | extremely rare circumstances | ||||
* | Updated documentation | Kevin Van Brunt | 2020-01-27 | 1 | -4/+8 |
| | |||||
* | Flushed out initialization documentation | Todd Leonhardt | 2020-01-26 | 1 | -0/+97 |
| | | | | | Also: - Rearranged some instance attributes in Cmd class to make it clear that they were not used by tab-completion functions. | ||||
* | Updated comment | Todd Leonhardt | 2020-01-26 | 1 | -9/+10 |
| | |||||
* | Improved example in initialiation docs | Todd Leonhardt | 2020-01-26 | 1 | -2/+14 |
| | |||||
* | Added documentation for empty sections of the Sphinx docs | Todd Leonhardt | 2019-11-02 | 1 | -2/+50 |
| | |||||
* | Add doc8 documentation style checking | kotfu | 2019-07-06 | 1 | -1/+2 |
| | | | | | | - add dev dependency - add doc8 to tasks.py - fix all doc8 errors | ||||
* | Added a walkthrough of constructing a simple application to the overview | kotfu | 2019-07-05 | 1 | -0/+4 |
For #709 |