index
:
delta/python-packages/cmd2-git.git
1216-rich-print-mixin
2.0
async_prompt
black
black_config
blank_prompt
border_color
ci_improvements
cmdset_settables
codeql
colored_simple_table
colored_tables
colored_tables_orig
column_spacing
complete_flag_names
completion_item_choices
ctrl-c
ctrl-d
custom_command_completer
custom_completer_refactor
dashes
default_categories
duplicate_subcommand
editors
enh_default_categories
error_cleanup
exception_passthrough
exit_code
ext_test_0_2
extended_colors
f-strings
fix_broken_unit_test
fix_hint
github_actions
header_tabs
history_fix
import_wrapping
ipy_locals
last_result
master
misc
move_attach
mypy_continued
mypy_explicit_export
nested_table
nested_table_orig
ns_fix
ordered_history
pep561
plugin_version
poutput-psuccess
prompt_error
py_refactor
pypy_fix
redirected_aliases
settable_hint
silence
silence_startup_script
silent_start
table_newline
topic_width
unit_tests
util_fixes
win_tab_crash
github.com: python-cmd2/cmd2.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Branch
Commit message
Author
Age
1216-rich-print-mixin
Initial rich mixin class
Eric Lin
3 years
2.0
Merge branch 'master' into 2.0
Todd Leonhardt
4 years
async_prompt
Updated async_alert() to account for self.prompt not matching Readline's curr...
Kevin Van Brunt
4 years
black
Merge branch 'master' into black
Todd Leonhardt
4 years
black_config
Added black to Pipfile and black configuration to pyrpoject.toml
Todd Leonhardt
4 years
blank_prompt
Fixed issue in ansi.async_alert_str() which would raise IndexError if prompt ...
Kevin Van Brunt
4 years
border_color
Added ability to set border background color on BorderTables and AlternatingT...
Kevin Van Brunt
4 years
ci_improvements
Adds pre-commit config to run various linters
xNinjaKittyx
5 years
cmdset_settables
Resolves comments from PR
Eric Lin
4 years
codeql
Onboard to GitHub CodeQL security scanning
Todd Leonhardt
5 years
colored_simple_table
Added ability to colorize all aspects of SimpleTables
Kevin Van Brunt
4 years
colored_tables
Added ability to colorize all aspects of BorderedTables and AlternatingTables.
Kevin Van Brunt
4 years
colored_tables_orig
Added ability to colorize all aspects of BorderedTable and AlternatingTable
Kevin Van Brunt
4 years
column_spacing
Made the amount of space between columns in a SimpleTable configurable
Kevin Van Brunt
4 years
complete_flag_names
Fixed example code
Kevin Van Brunt
4 years
completion_item_choices
ArgparseCompleter now sorts CompletionItems created with numerical values as ...
Kevin Van Brunt
4 years
ctrl-c
Stopping a shell command with Ctrl-C now raises a KeyboardInterrupt to suppor...
Kevin Van Brunt
4 years
ctrl-d
do_eof() now just calls the quit function
Kevin Van Brunt
4 years
custom_command_completer
Updated documentation for setting custom parsers
Kevin Van Brunt
4 years
custom_completer_refactor
Added ap_completer_type arg to Cmd2ArgumentParser.__init__().
Kevin Van Brunt
4 years
dashes
Merge branch 'master' into dashes
kotfu
5 years
default_categories
Start to some improvements to default categories. Next: tag CommandSet classe...
Eric Lin
5 years
duplicate_subcommand
Fixed issue where instantiating more than one cmd2-based class which uses the...
Kevin Van Brunt
5 years
editors
Fix unit test that was failing when EDITOR environment variable was set
Todd Leonhardt
5 years
enh_default_categories
Minor type hinting fixes.
Eric Lin
5 years
error_cleanup
Replaced some pexcept() calls with perror().
Kevin Van Brunt
4 years
exception_passthrough
Added cmd2.exceptions.PassThroughException
Kevin Van Brunt
4 years
exit_code
No longer using -1 as an exit code
Kevin Van Brunt
4 years
ext_test_0_2
Updated URL and documentation in preparation for cmd2-ext-test 0.2.0 release
Eric Lin
5 years
extended_colors
Added support for 8-bit/256-colors with the cmd2.EightBitFg and cmd2.EightBit...
Kevin Van Brunt
4 years
f-strings
Increased unit test coverage for pexcept()
Kevin Van Brunt
4 years
fix_broken_unit_test
Skip a test which is failing on Python 3.8 and 3.9 for now to fix a unit test
Todd Leonhardt
4 years
fix_hint
fixes the type hint in example
Eric Lin
5 years
github_actions
Removed CONTRIBUTING.md file from the manifest (i.e. from the PyPI package)
Todd Leonhardt
4 years
header_tabs
Fixed FileNotFoundError which occurred when running 'history --clear' and no ...
Kevin Van Brunt
4 years
history_fix
Merge branch 'master' into history_fix
Todd Leonhardt
4 years
import_wrapping
Changed isort to force wrapping of imports to reduce merge conflicts from min...
Eric Lin
4 years
ipy_locals
Fixed type hints
Kevin Van Brunt
4 years
last_result
All cmd2 built-in commands now populate self.last_result
Kevin Van Brunt
4 years
master
Make sys.stdout check clearer.
Andrew Clark IV
2 years
misc
Updated documentation
Kevin Van Brunt
4 years
move_attach
Merge branch 'master' into move_attach
Kevin Van Brunt
5 years
mypy_continued
Add mypy validation action
Eric Lin
4 years
mypy_explicit_export
Changed CommandResult.stderr to a str instead of Optional[str]
Kevin Van Brunt
4 years
nested_table
Added settings to Column class which prevent a table from overriding existing...
Kevin Van Brunt
4 years
nested_table_orig
Added settings to Column class which prevent a table from overriding existing...
Kevin Van Brunt
4 years
ns_fix
Fixed issue where a ns_provider could be passed None instead of its correct c...
Kevin Van Brunt
4 years
ordered_history
Changed History to use OrderDict to support Python 3.6 in non-CPython environ...
Kevin Van Brunt
4 years
pep561
Added py.typed to signal that we support type annotations for PEP-561. Fixes ...
Eric Lin
4 years
plugin_version
Removed relative_to
Eric Lin
4 years
poutput-psuccess
Updating docs intersphinx to latest
Eric Lin
2 years
prompt_error
Fixed AttributeError in rl_get_prompt() when prompt is None.
Kevin Van Brunt
4 years
py_refactor
Renamed use_ipython keyword parameter of cmd2.Cmd.__init__() to include_ipy.
Kevin Van Brunt
4 years
pypy_fix
Added handling for OSError caused by trying to load a GNU readline shared lib...
Kevin Van Brunt
4 years
redirected_aliases
Fixed issue where quoted redirectors and terminators in aliases and macros we...
Kevin Van Brunt
5 years
settable_hint
Fixed bug where setting always_show_hint=True did not show a hint when comple...
Kevin Van Brunt
5 years
silence
Small refactor
Kevin Van Brunt
5 years
silence_startup_script
Renamed silent_startup_script to silence_startup_script for clarity
Kevin Van Brunt
4 years
silent_start
Merge branch 'master' into silent_start
Todd Leonhardt
4 years
table_newline
Fixed issue where TableCreator was tossing blank last lines
Kevin Van Brunt
4 years
topic_width
Updated documentation
Kevin Van Brunt
4 years
unit_tests
Added self.last_result unit tests for the history command.
Kevin Van Brunt
4 years
util_fixes
Shared implementation of write it StdSim
Eric Lin
4 years
win_tab_crash
Fixed tab completion crash on Windows
Kevin Van Brunt
5 years