summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #840 from python-cmd2/categorize_dynamicKevin Van Brunt2020-01-061-6/+20
|\ \ \ | | | | | | | | Categorize dynamic
| * \ \ Merge branch 'master' into categorize_dynamicKevin Van Brunt2020-01-063-2/+4
| |\ \ \ | |/ / / |/| | |
* | | | Merge pull request #839 from python-cmd2/setuptools_dependencyKevin Van Brunt2020-01-063-2/+4
|\ \ \ \ | | | | | | | | | | Add missing setuptools dependency
| * | | | Updated CHANGELOGTodd Leonhardt2020-01-052-0/+2
| | | | |
| * | | | Added minimum version of setuptools_scm and added dependency on setuptoolsTodd Leonhardt2020-01-051-2/+2
|/ / / /
| * | | Updated dynamic commands example to add help categoryKevin Van Brunt2020-01-061-6/+20
|/ / /
* | | Merge pull request #838 from python-cmd2/coverage_versionTodd Leonhardt2020-01-051-1/+1
|\ \ \ | | | | | | | | Set max version restriction for coverage dependency
| * | | Try setting a maximum coverage versionTodd Leonhardt2020-01-041-1/+1
|/ / /
| * | Updated style regular expression to not require digitsKevin Van Brunt2019-12-191-2/+2
| | |
| * | Renamed ansi_safe_wcswidth() to style_aware_wcswidth()Kevin Van Brunt2019-12-199-32/+35
| | | | | | | | | | | | Renamed ansi_aware_write() to style_aware_write()
| * | Merge branch 'master' into ansi_to_styleKevin Van Brunt2019-12-195-64/+49
| |\ \ | |/ / |/| |
* | | Merge pull request #834 from python-cmd2/quote_scriptKevin Van Brunt2019-12-195-64/+49
|\ \ \ | | | | | | | | Quote script
| * | | Updating unit testsKevin Van Brunt2019-12-171-0/+15
| | | |
| * | | Updating unit testsKevin Van Brunt2019-12-173-63/+29
| | | |
| * | | Fixed bug where startup script containing a single quote in its file name ↵Kevin Van Brunt2019-12-172-1/+5
|/ / / | | | | | | | | | was incorrectly quoted
| * | Changed allow_ansi to allow_style for accuracy in what types of ANSI escape ↵Kevin Van Brunt2019-12-1917-122/+126
|/ / | | | | | | sequences are handled
* | Merge pull request #832 from python-cmd2/rstripTodd Leonhardt2019-12-103-15/+21
|\ \ | | | | | | Took out rstrip() calls that are no longer neeeded
| * \ Merge branch 'master' into rstripKevin Van Brunt2019-12-101-2/+2
| |\ \ | |/ / |/| |
* | | Increased code coverage in argparse_completer.py back to 100%Kevin Van Brunt2019-12-101-2/+2
| | |
| * | Increased code coverageKevin Van Brunt2019-12-101-11/+17
| | |
| * | Took out more rstrip() calls that are no longer neeededKevin Van Brunt2019-12-101-2/+2
| | |
| * | Took out rstrip() calls that are no longer neeededKevin Van Brunt2019-12-101-2/+2
|/ /
* | Merge pull request #831 from python-cmd2/align_text0.9.22Kevin Van Brunt2019-12-096-46/+352
|\ \ | | | | | | Added text alignment functions
| * | Fixed doc generation errorsKevin Van Brunt2019-12-092-2/+9
| | |
| * | Renamed functions based on code review comments. Fixed Python warnings.Kevin Van Brunt2019-12-094-58/+60
| | |
| * | Updated change log for releaseKevin Van Brunt2019-12-091-1/+1
| | |
| * | Added more unit tests for text alignmentKevin Van Brunt2019-12-091-10/+28
| | |
| * | Updated change logKevin Van Brunt2019-12-091-0/+2
| | |
| * | Added more text alignment unit testsKevin Van Brunt2019-12-092-1/+14
| | |
| * | Adding unit tests for text alignment functionsKevin Van Brunt2019-12-092-31/+165
| | |
| * | Updated center_text to support ansi escape sequences and characters with ↵Kevin Van Brunt2019-12-094-37/+167
|/ / | | | | | | | | | | display widths greater than 1. Also added left and right justification functions.
* | Fixed typoKevin Van Brunt2019-12-061-1/+1
| |
* | Added missing information to 0.9.12 change log entryKevin Van Brunt2019-12-061-1/+3
| |
* | Merge pull request #829 from python-cmd2/line_bufferingKevin Van Brunt2019-12-062-9/+11
|\ \ | | | | | | Enabled line buffering when redirecting output to a file
| * | Removed redundant line of codeKevin Van Brunt2019-12-061-1/+0
| | |
| * | Enabled line buffering when redirecting output to a fileKevin Van Brunt2019-12-052-9/+12
|/ /
| * Merge branch 'master' into generating_output_docskotfu2019-12-054-15/+22
| |\ | |/ |/| | | | | # Conflicts: # cmd2/ansi.py
* | Updated change logKevin Van Brunt2019-12-041-2/+5
| |
* | Removed bold from style_successKevin Van Brunt2019-12-041-1/+1
| |
* | Fixed typo in documentationKevin Van Brunt2019-12-041-1/+1
| |
* | Merge pull request #827 from python-cmd2/printer_changesTodd Leonhardt2019-12-031-7/+7
|\ \ | | | | | | Print function enhancements
| * | Added self to perror() for consistency and ease of overridingKevin Van Brunt2019-12-031-7/+7
|/ / | | | | | | poutput(), perror(), and pwarning() can now be called with no args
* | Merge pull request #825 from python-cmd2/parsersKevin Van Brunt2019-12-031-4/+8
|\ \ | | | | | | Gave names to parser variables for a few commands
| * | Gave names to parser variables for a few commands so developers overriding ↵Kevin Van Brunt2019-12-021-4/+8
|/ / | | | | | | these commands can use the parsers
| * Reorganize doc conventionskotfu2019-11-301-46/+41
| |
| * Spacing fixkotfu2019-11-291-1/+0
| |
| * Finish documenting settings and add new builtin_commands documentkotfu2019-11-294-29/+126
| |
| * Clean out some unused cruftkotfu2019-11-291-19/+5
| |
| * Minor formatting cleanupskotfu2019-11-292-12/+12
| |
| * Finish generating_output and document output related settingskotfu2019-11-292-57/+90
| |