summaryrefslogtreecommitdiff
path: root/docs/freefeatures.rst
Commit message (Collapse)AuthorAgeFilesLines
* Integrate freefeatures into new doc structurekotfu2019-07-161-136/+0
|
* Lots of work on the migrating documentation for #719kotfu2019-07-141-186/+0
|
* Added autoclass documentation for cmd2.Cmd in cmd.rstTodd Leonhardt2019-07-061-0/+5
| | | | This required whitespace tweaks to a number of docstrings.
* Add doc8 documentation style checkingkotfu2019-07-061-276/+80
| | | | | | - 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-2/+2
| | | | For #709
* Skeleton doc structure complete for #709kotfu2019-07-021-14/+0
|
* Major overhaul of documentation structure for #709kotfu2019-07-021-2/+2
|
* Updated documentationKevin Van Brunt2019-06-151-20/+11
|
* Removed support for cmd.cmdqueueKevin Van Brunt2019-06-111-2/+2
| | | | allow_cli_args is now an argument to __init__ instead of a cmd2 class member
* Add the -a/--all flag to the history command for showing all commands ↵Todd Leonhardt2019-05-271-1/+1
| | | | | | | | | | including those persisted from previous sessions Also: - History class has been modified to keep track of the session start index - History class span(), str_search(), and regex_search() methods now take an optional 2nd boolean parameter `include_persisted` which determines whether or not commands persisted from previous sessions should be included by default - If a start index is manually specified, then it automatically includes the full search - Updates unit tests
* Addressed review commentsTodd Leonhardt2019-03-181-1/+5
|
* Added load -r flag for recording a transcript based on a script fileTodd Leonhardt2019-03-181-0/+5
| | | | The load command now supports the -r/--record_transcript flag for recording a transcript file based on a script file.
* Negative ending history indices include the referenced command, instead of ↵kotfu2019-03-111-2/+3
| | | | excluding it
* Allow both history indices to be negativekotfu2019-03-101-2/+1
|
* Incorporating requested changes from the PRkotfu2019-03-101-3/+7
|
* Formatting clean up on history sectionkotfu2019-03-101-61/+67
|
* Merge branch 'history_improvements' of github.com:python-cmd2/cmd2 into ↵kotfu2019-03-101-18/+2
|\ | | | | | | history_improvements
| * Removed obsolete documentationKevin Van Brunt2019-03-101-18/+2
| |
* | Add documentation for the history command.kotfu2019-03-101-6/+194
|/
* Fixed wording in freefeatures.rstTodd Leonhardt2019-03-041-1/+2
|
* Merge master into with_argument_list and resolved conflictsTodd Leonhardt2019-03-041-16/+9
|\
| * Updated docsKevin Van Brunt2019-03-021-0/+3
| |
| * Updated CodeOwners file and fixed minor errors in freefeatures.rstTodd Leonhardt2019-03-021-5/+4
| |
| * Updated docs about commentsKevin Van Brunt2019-03-011-12/+4
| |
* | Updated CHANGELOG and fixed Sphinx docsTodd Leonhardt2019-03-041-5/+4
|/
* Minor doc updates that fix a few typos and inaccuraciesTodd Leonhardt2019-02-061-1/+0
|
* Refactored filtering in path_complete to use a functionKevin Van Brunt2018-10-261-1/+1
|
* First steps in converting all commands to argparseKevin Van Brunt2018-09-261-7/+3
|
* Remove cmd2.Cmd.redirector for #381kotfu2018-05-101-21/+3
|
* Fix broken Sphinx documentationTodd Leonhardt2018-05-021-7/+7
| | | | All of the Sphinx autodoc/automethod documentation was broken since the cmd2.Cmd stuff got moved to cmd2.cmd2.Cmd when cmd2 got converted to a multi-file Python package.
* Merge branch 'test_merge' into test_ply_mergeEric Lin2018-05-021-14/+47
|\
| * Updated some documentation.Eric Lin2018-05-021-14/+47
| |
* | Clean up documentation references to pyparsingkotfu2018-04-291-6/+2
|/
* Removed reference to Python 2 and 2.7 in some sections of the documentationTodd Leonhardt2018-04-151-5/+0
|
* Deleted optparse code which had been previously deprecated in 0.8.0 releaseTodd Leonhardt2018-04-091-4/+3
| | | | | Also: - Bumped version to 0.8.4
* Addressed code review commentsKevin Van Brunt2018-03-271-0/+5
|
* Updated documentationKevin Van Brunt2018-03-251-3/+2
|
* Fixed small typos and changed example code class nameMark Lalor2018-03-171-4/+4
|
* Added a tiny bit of documentationTodd Leonhardt2018-03-171-0/+13
|
* Added documentaionKevin Van Brunt2018-03-161-3/+3
|
* Fix typos in freefeatures.rstMark Lalor2018-03-111-2/+2
| | | Changed "built-in" instead of "build-in" and fixed accidental capitalization of a letter.
* Removed abbrev attributeKevin Van Brunt2018-03-021-17/+0
|
* Added optional persistent readline history featureTodd Leonhardt2018-02-081-6/+9
| | | | | | | | | | | | - Including an example and info in the Sphinx docs Also: - Created CHANGELOG entry for 0.8.1 release - Added info to README about new sub-menu feature - Bumped version to 0.8.1 TODO: - Added a unit test for the persistent readline history feature
* Cleanup of documentation and examplesTodd Leonhardt2018-01-171-7/+4
| | | | Removed usage of and reference to attributes and commands which have now been removed.
* Improved documentation for how a user can modify comment grammar/styleTodd Leonhardt2017-09-221-1/+2
| | | | | | | Also: - Added arg_print.py example to demonstrate this - Bumped version to 0.7.8a - Updated CHANGELOG
* Documentation edits and revisionsJared Crapo2017-08-221-0/+2
|
* Revise and clean up documentationJared Crapo2017-08-211-1/+1
|
* Write documentation for revised transcription featureJared Crapo2017-08-211-24/+10
|
* Spelling of abbrev in Abbreviated commands section ksunden2017-07-161-1/+1
| | | From "abrev" to "abbrev"
* Load command uses utf-8 encoding for opening files in Python 3 instead of ↵Todd Leonhardt2017-07-081-2/+8
| | | | | | OS-default This fixes a unit test bug where on Windows it was trying to load a utf-8 file as some other encoding starting with "cp".