summaryrefslogtreecommitdiff
path: root/cmd2
Commit message (Expand)AuthorAgeFilesLines
* Fixed mypy and flake8 errors.Kevin Van Brunt2023-01-272-3/+5
* Fixed ValueError caused when passing Cmd.columnize() strings wider than displ...Kevin Van Brunt2023-01-271-1/+2
* Fix black errorskotfu2022-11-051-1/+1
* Update type hints and comments on to_bool()kotfu2022-11-051-5/+8
* Enhance str_to_bool() to accept other typeskotfu2022-11-051-4/+8
* Use latest version of mypy and fix type hinting accordingly (#1239)Todd Leonhardt2022-07-143-8/+9
* Moved documentation annotation stripping into utility function. Changed argpa...Eric Lin2022-04-253-18/+32
* async_alert() raises a RuntimeError if called from the main thread.Kevin Van Brunt2022-04-131-11/+24
* Fixed value for ansi.Bg.YELLOWKevin Van Brunt2022-04-131-1/+1
* Fixed spelling in a docstringKevin Van Brunt2022-02-241-1/+1
* Reduced amount of style characters carried over from previous lines when alig...Kevin Van Brunt2022-02-224-40/+147
* cmd2 now uses pyreadline3 when running any version of Python on WindowsKevin Van Brunt2022-02-172-12/+11
* Improved some readline-related commentsKevin Van Brunt2022-02-172-8/+25
* Deleted cmd2.fg and cmd2.bg which were deprecated in 2.3.0. Use cmd2.Fg and c...Kevin Van Brunt2022-02-172-71/+0
* Fixed issue where tab completion was quoting argparse flags in some cases.Kevin Van Brunt2022-02-162-33/+38
* Added PassThroughException to __init__.py imports. (#1194)Kevin Van Brunt2022-01-261-1/+7
* Fixed issue in ansi.async_alert_str() which would raise IndexError if prompt ...Kevin Van Brunt2022-01-171-1/+1
* Added 'no cover' pragma to importKevin Van Brunt2021-12-151-1/+1
* Simplified importKevin Van Brunt2021-12-151-12/+3
* Added broader exception handling when enabling clipboard functionality via py...Kevin Van Brunt2021-12-152-7/+9
* Added clearer exception handling to BorderedTable and SimpleTableKevin Van Brunt2021-11-241-1/+9
* Fixed issue where a ns_provider could be passed None instead of its correct c...2.3.2Kevin Van Brunt2021-11-222-5/+4
* Updated docstring2.3.1Kevin Van Brunt2021-11-181-2/+3
* ArgparseCompleter now sorts CompletionItems created with numerical values as ...Kevin Van Brunt2021-11-183-31/+59
* Added ability to use CompletionItems as argparse choicesKevin Van Brunt2021-11-181-7/+58
* Added ability to set border background color on BorderTables and AlternatingT...Kevin Van Brunt2021-11-101-37/+46
* Added type checks to ansi.style()Kevin Van Brunt2021-10-271-0/+6
* Updated table example.Kevin Van Brunt2021-10-261-17/+17
* Added ability to colorize all aspects of SimpleTablesKevin Van Brunt2021-10-251-15/+74
* Fixed regression in Cmd.select converting "Any" type argument to stringBenjamin George Roberts2021-10-251-2/+2
* Added ability to colorize all aspects of BorderedTables and AlternatingTables.Kevin Van Brunt2021-10-194-104/+168
* Added support for 8-bit/256-colors with the cmd2.EightBitFg and cmd2.EightBit...Kevin Van Brunt2021-10-186-233/+1024
* Added settings to Column class which prevent a table from overriding existing...Kevin Van Brunt2021-10-131-7/+32
* Fixed AttributeError in rl_get_prompt() when prompt is None.Kevin Van Brunt2021-10-112-26/+18
* Updated thread nameKevin Van Brunt2021-09-241-1/+1
* Updated async_alert() to account for self.prompt not matching Readline's curr...Kevin Van Brunt2021-09-142-30/+70
* Argparse tab completer will complete remaining flag names if there are no mor...Kevin Van Brunt2021-09-071-3/+4
* Updating docsKevin Van Brunt2021-09-011-0/+2
* Added cmd2.Cmd method to determine what ArgparseCompleter type to useKevin Van Brunt2021-09-012-21/+22
* Added ap_completer_type arg to Cmd2ArgumentParser.__init__().Kevin Van Brunt2021-09-012-1/+12
* Refactored custom ArgparseCompleter functionality so they will now be set usi...Kevin Van Brunt2021-09-016-54/+121
* Added self.last_result unit tests for run_script, _relative_run_script, and s...Kevin Van Brunt2021-08-251-0/+1
* Fixed extra space appended to each alias by "alias list" command.Kevin Van Brunt2021-08-251-6/+8
* All cmd2 built-in commands now populate self.last_resultKevin Van Brunt2021-08-232-8/+67
* Merge branch 'master' into topic_widthKevin Van Brunt2021-08-236-46/+180
|\
| * Removed DEFAULT_ARGUMENT_PARSER and DEFAULT_COMMAND_COMPLETER from __init.py__Kevin Van Brunt2021-08-231-6/+3
| * Updated documentation for setting custom parsersKevin Van Brunt2021-08-231-1/+4
| * Applied black formatEric Lin2021-08-233-7/+12
| * * New function `set_default_command_completer_type()` allows developer to ext...Eric Lin2021-08-236-40/+169
* | Updated documentationtopic_widthKevin Van Brunt2021-08-191-0/+1