summaryrefslogtreecommitdiff
path: root/docs/features/initialization.rst
Commit message (Collapse)AuthorAgeFilesLines
* Ctrl-C now stops a running text script instead of just the current script ↵Kevin Van Brunt2020-03-261-2/+2
| | | | command
* Removed dash from 'tab complete' stringKevin Van Brunt2020-02-131-1/+1
|
* Merge branch 'master' into color_autocompleteTodd Leonhardt2020-02-061-1/+1
|\
| * Merge branch 'master' into doc_streamlinekotfu2020-02-061-2/+5
| |\ | | | | | | | | | | | | # Conflicts: # docs/features/settings.rst
| * | Clean up class and method referenceskotfu2020-02-051-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 Leonhardt2020-02-061-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 docsTodd Leonhardt2020-02-041-2/+5
|/
* Attempt to make "help -v" more discoverable by changing the default help textTodd Leonhardt2020-01-291-0/+2
|
* Renamed locals_in_py to self_in_pyTodd Leonhardt2020-01-271-3/+3
| | | | This more accurately reflects what it controls
* Made three public attributes of cmd2.Cmd no longer settable at runtime by ↵Todd Leonhardt2020-01-271-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 Leonhardt2020-01-271-19/+2
| | | | extremely rare circumstances
* Updated documentationKevin Van Brunt2020-01-271-4/+8
|
* Flushed out initialization documentationTodd Leonhardt2020-01-261-0/+97
| | | | | Also: - Rearranged some instance attributes in Cmd class to make it clear that they were not used by tab-completion functions.
* Updated commentTodd Leonhardt2020-01-261-9/+10
|
* Improved example in initialiation docsTodd Leonhardt2020-01-261-2/+14
|
* Added documentation for empty sections of the Sphinx docsTodd Leonhardt2019-11-021-2/+50
|
* Add doc8 documentation style checkingkotfu2019-07-061-1/+2
| | | | | | - add dev dependency - add doc8 to tasks.py - fix all doc8 errors
* Added a walkthrough of constructing a simple application to the overviewkotfu2019-07-051-0/+4
For #709