summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add API documentation for constantskotfu2020-02-153-3/+37
| |
| * Finish attribute documentation for Statement classkotfu2020-02-141-5/+30
| |
| * Add documentation of multiline_command attributekotfu2020-02-141-0/+5
| |
| * Remove separate files for utility functions and classeskotfu2020-02-143-6/+0
| |
| * Add link to issue for more detail on how we determined our attribute ↵kotfu2020-02-141-0/+3
| | | | | | | | documentation approach
| * Add documentation for parsing classeskotfu2020-02-145-129/+152
| |
| * move `categorize()` to `utils.py` and make `set_parser_prog` a private methodkotfu2020-02-144-22/+26
| |
| * no - in tab-completionkotfu2020-02-141-1/+1
| |
| * Merge branch 'master' into api_docskotfu2020-02-1427-492/+521
| |\ | |/ |/| | | | | | | # Conflicts: # cmd2/ansi.py # docs/features/completion.rst
* | Merge pull request #887 from python-cmd2/completion_docsTodd Leonhardt2020-02-1319-414/+280
|\ \ | | | | | | Completion docs
| * | Fixed missing importKevin Van Brunt2020-02-131-0/+2
| | |
| * | Updated documentationKevin Van Brunt2020-02-131-5/+5
| | |
| * | Finished argparse completion exampleKevin Van Brunt2020-02-131-21/+49
| | |
| * | Wrote examples for CompletionError and CompletionItemKevin Van Brunt2020-02-131-13/+34
| | |
| * | Using metavar in CompletionItem header if it has been setKevin Van Brunt2020-02-131-2/+4
| | |
| * | Start of new argparse completion exampleKevin Van Brunt2020-02-131-0/+73
| | |
| * | Removed dash from 'tab complete' stringKevin Van Brunt2020-02-1314-57/+57
| | |
| * | Removed use of argparse from basic completion exampleKevin Van Brunt2020-02-131-46/+30
| | |
| * | Overhauling tab completion examplesKevin Van Brunt2020-02-126-284/+40
|/ /
* | Merge pull request #886 from python-cmd2/truncate_with_styleKevin Van Brunt2020-02-115-30/+139
|\ \ | | | | | | truncate_line not handling style sequences
| * | Replaced unicode escape sequence for horizontal ellipsis with actual characterKevin Van Brunt2020-02-111-1/+3
| | |
| * | Fix optional type hintTodd Leonhardt2020-02-111-2/+2
| | | | | | | | | | | | typing.OrderedDict wasn't added until Python 3.7.2; so replace with Dict.
| * | Allowing for colored fill char in align_textKevin Van Brunt2020-02-112-15/+44
| | | | | | | | | | | | Added function to index all style sequences found in a string
| * | WhitespaceKevin Van Brunt2020-02-111-0/+1
| | |
| * | Fixed bug where ANSI style sequences were not correctly handled in ↵Kevin Van Brunt2020-02-114-23/+100
|/ / | | | | | | utils.truncate_line()
* | Merge pull request #884 from python-cmd2/appveyor_fixTodd Leonhardt2020-02-101-3/+7
|\ \ | | | | | | Appveyor fix
| * | Try to auto-accept dialog so headless install doesn't get stuckTodd Leonhardt2020-02-101-5/+6
| | |
| * | Attempt at a quick fix for AppVeyor errorsTodd Leonhardt2020-02-101-0/+3
|/ /
* | Merge pull request #883 from python-cmd2/flag_renameKevin Van Brunt2020-02-103-4/+6
|\ \ | | | | | | do_set flag rename
| * | Renamed set command's -l/--long flag to -v/--verbose for consistency with ↵Kevin Van Brunt2020-02-103-4/+6
|/ / | | | | | | help and history commands
* | Merge pull request #882 from python-cmd2/miscKevin Van Brunt2020-02-103-19/+25
|\ \ | | | | | | do_set fix
| * | Corrected issue where the actual new value was not always being printed in ↵Kevin Van Brunt2020-02-103-19/+25
|/ / | | | | | | | | | | | | | | do_set. Fixed do_set unit test. Made allow_ansi setter error message consistent with str_to_bool. Updated a docstring
* | Merge pull request #881 from python-cmd2/help_docsTodd Leonhardt2020-02-091-11/+63
|\ \ | | | | | | Updated Sphinx docs about help
| * | Added caveatTodd Leonhardt2020-02-091-1/+3
| | |
| * | Updated Sphinx docs about helpTodd Leonhardt2020-02-091-11/+61
|/ /
| * Merge branch 'api_docs' of https://github.com/python-cmd2/cmd2 into api_docskotfu2020-02-103-20/+51
| |\
| | * Merge branch 'master' into api_docsTodd Leonhardt2020-02-083-20/+51
| | |\ | |_|/ |/| |
* | | Merge pull request #879 from python-cmd2/prompt_docsTodd Leonhardt2020-02-083-20/+51
|\ \ \ | | | | | | | | Updated Sphinx documentation related to prompt
| * | | Updated Sphinx documentation related to promptTodd Leonhardt2020-02-083-20/+51
|/ / /
| * | Begin process of combining utils api docs into a single documentkotfu2020-02-104-66/+6
| | |
| * | Add example to with_argument_list docstringkotfu2020-02-101-3/+13
| | |
| * | Title decorator documentation by package namekotfu2020-02-092-4/+4
| |/
| * Show autodoc members in the same order as the source codekotfu2020-02-081-0/+5
| |
| * All public api functions now documentedkotfu2020-02-081-3/+45
|/
* Ran into an issue attempting to publish a release 1.0.0-rc1 to test.pypi.org0.10.0Todd Leonhardt2020-02-071-3/+4
| | | | | | I'm not sure if the problem is specific to the test version of PyPI or if it is related to limitations in setuptools_scm. But to keep things simple I just changed the version to 0.10.0 and updated the CHANGELOG accordingly
* Updated release data for 1.0.0-rc1 in preparation for a release candidateTodd Leonhardt2020-02-074-4/+8
| | | | | Also: - Updated some very outdated comments in transcript files
* Merge pull request #877 from python-cmd2/changelog_fixTodd Leonhardt2020-02-077-100/+128
|\ | | | | Changelog fix for removed ansi.FG_COLORS and ansi.BG_COLORS
| * Fixed docs errorKevin Van Brunt2020-02-071-1/+2
| |
| * Updated change logKevin Van Brunt2020-02-071-0/+3
| |
| * Added unit test for ColorBase.colors()Kevin Van Brunt2020-02-071-0/+7
| |