Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Updated plumbum example | Kevin Van Brunt | 2020-02-07 | 2 | -41/+43 | |
| | | ||||||
| * | Added __str__() back to ColorBase for more flexibility in its usage | Kevin Van Brunt | 2020-02-07 | 2 | -10/+36 | |
| | | | | | | | | Updated documentation and added unit tests | |||||
| * | Simplified ColorBase.__add__() | Kevin Van Brunt | 2020-02-07 | 1 | -6/+0 | |
| | | ||||||
| * | Corrected docstring | Kevin Van Brunt | 2020-02-07 | 1 | -1/+1 | |
| | | ||||||
| * | Support using fg and bg enum in + operations to build color strings | Kevin Van Brunt | 2020-02-07 | 1 | -16/+33 | |
| | | ||||||
| * | Removed unnecessary methods from fg and bg color enums | Todd Leonhardt | 2020-02-07 | 2 | -32/+8 | |
| | | ||||||
| * | Simplified fg's and bg's get_value() | Kevin Van Brunt | 2020-02-07 | 1 | -2/+2 | |
| | | ||||||
| * | Removed repeated Pycharm warning suppression | Kevin Van Brunt | 2020-02-07 | 1 | -1/+1 | |
| | | ||||||
| * | The fact that the set command now supports tab-completion of values is an ↵ | Todd Leonhardt | 2020-02-07 | 1 | -1/+1 | |
| | | | | | | | | enhancement, not a breaking change | |||||
| * | Updated changelog to address removal of ansi.FG_COLORS and ansi.BG_COLORS ↵ | Todd Leonhardt | 2020-02-07 | 3 | -9/+11 | |
|/ | | | | | | | and mention their replacement by ansi.fg and ansi.bg enums Also: - Use ansi.fg in async_printing.py and README.md | |||||
* | Merge pull request #876 from python-cmd2/color_autocomplete | Todd Leonhardt | 2020-02-06 | 9 | -79/+142 | |
|\ | | | | | Added convenience enums of fg and bg colors | |||||
| * | Merge branch 'master' into color_autocomplete | Todd Leonhardt | 2020-02-06 | 19 | -87/+68 | |
| |\ | |/ |/| | ||||||
* | | Merge pull request #875 from python-cmd2/doc_streamline | Todd Leonhardt | 2020-02-06 | 19 | -87/+68 | |
|\ \ | | | | | | | Doc streamline | |||||
| * | | EmbeddedConsoleExit should not be part of the public api | kotfu | 2020-02-06 | 1 | -2/+0 | |
| | | | ||||||
| * | | Fix redundant declaration of cmd2.Cmd.__init__ method | kotfu | 2020-02-06 | 1 | -3/+1 | |
| | | | ||||||
| * | | Add documentation of __init__ method | kotfu | 2020-02-06 | 1 | -0/+2 | |
| | | | ||||||
| * | | Merge branch 'doc_streamline' of https://github.com/python-cmd2/cmd2 into ↵ | kotfu | 2020-02-06 | 1 | -4/+3 | |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | doc_streamline # Conflicts: # docs/features/settings.rst | |||||
| | * \ | Merge branch 'master' into doc_streamline | Todd Leonhardt | 2020-02-06 | 34 | -292/+422 | |
| | |\ \ | |_|/ / |/| | | | | | | | | | | | # Conflicts: # docs/features/settings.rst | |||||
| * | | | Merge branch 'master' into doc_streamline | kotfu | 2020-02-06 | 34 | -291/+422 | |
| |\ \ \ | |/ / / |/| / / | |/ / | | | | # Conflicts: # docs/features/settings.rst | |||||
| * | | Clean up class and method references | kotfu | 2020-02-05 | 19 | -80/+64 | |
| | | | | | | | | | | | | | | | - In docs/api/cmd.rst, the `cmd2.Cmd` class was defined as `cmd2.cmd2.Cmd`, which required the extraneous `cmd2` every time we referenced it. This extra `cmd2` is no longer required. - always refer to a bare cmd2 using ``cmd2`` per our documentation conventions | |||||
| | * | Renamed argument from color to name for fg.get_value() and bg.get_value() | Todd Leonhardt | 2020-02-06 | 1 | -4/+4 | |
| | | | ||||||
| | * | Suppressed bogus PyCharm warnings and improved error message for invalid ↵ | Todd Leonhardt | 2020-02-06 | 1 | -2/+6 | |
| | | | | | | | | | | | | colors passed to style | |||||
| | * | Having two parallel datastructures each for foreground and background colors ↵ | Todd Leonhardt | 2020-02-06 | 6 | -65/+46 | |
| | | | | | | | | | | | | | | | | | | felt really clunky - now we just have one The Enum classes are now smart and deal with it all. | |||||
| | * | Added convenience `ansi.fg` and `ansi.bg` enums of foreground and background ↵ | Todd Leonhardt | 2020-02-06 | 5 | -15/+93 | |
| |/ |/| | | | | | | | | | colors which style() can now optionally use This is to make it easier to autocomplete color names in an IDE | |||||
* | | Merge pull request #873 from python-cmd2/set_update | Todd Leonhardt | 2020-02-06 | 34 | -295/+426 | |
|\ \ | |/ |/| | Updated set command to support tab completion of values | |||||
| * | Fixed example code | Kevin Van Brunt | 2020-02-06 | 1 | -1/+1 | |
| | | ||||||
| * | Fix flake8 errors in doc config | Todd Leonhardt | 2020-02-05 | 1 | -3/+0 | |
| | | ||||||
| * | Documentation updates | kotfu | 2020-02-05 | 5 | -24/+38 | |
| | | ||||||
| * | Updated documentation | Kevin Van Brunt | 2020-02-05 | 1 | -1/+1 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2020-02-05 | 1 | -0/+1 | |
| | | ||||||
| * | No longer displaying list of subcommands in usage text of alias and macro | Kevin Van Brunt | 2020-02-05 | 2 | -4/+4 | |
| | | ||||||
| * | Fixing tab-completion hints when completing the value field of set | Kevin Van Brunt | 2020-02-05 | 1 | -1/+5 | |
| | | ||||||
| * | Added more to Settable docstring | Kevin Van Brunt | 2020-02-05 | 1 | -2/+9 | |
| | | ||||||
| * | Added more to onchange_cb documentation | Kevin Van Brunt | 2020-02-05 | 1 | -3/+7 | |
| | | ||||||
| * | Updated documentation | Kevin Van Brunt | 2020-02-05 | 2 | -2/+2 | |
| | | ||||||
| * | Updated help text | Kevin Van Brunt | 2020-02-05 | 3 | -5/+5 | |
| | | ||||||
| * | Added remove_settable() since cmd2 has add_settable() | Kevin Van Brunt | 2020-02-05 | 4 | -5/+25 | |
| | | | | | | | | Documented Settable.onchange_cb | |||||
| * | Updated documentation | Kevin Van Brunt | 2020-02-05 | 1 | -2/+4 | |
| | | ||||||
| * | Added support to do_set() for setting a parameter to an empty string as well ↵ | Kevin Van Brunt | 2020-02-05 | 2 | -4/+18 | |
| | | | | | | | | as something resembling an argparse flag (e.g. -h) | |||||
| * | Added unit tests | Kevin Van Brunt | 2020-02-05 | 1 | -10/+41 | |
| | | ||||||
| * | Fixed missing parenthesis | Kevin Van Brunt | 2020-02-04 | 1 | -1/+1 | |
| | | ||||||
| * | To support completer/choices functions that receive arg_tokens, changed ↵ | Kevin Van Brunt | 2020-02-04 | 1 | -26/+34 | |
| | | | | | | | | complete_set_value() to pass all tokens into its AutoCompleter | |||||
| * | Removed unnecessary inheritance from object | Kevin Van Brunt | 2020-02-04 | 5 | -10/+10 | |
| | | ||||||
| * | Updated example transcripts | Todd Leonhardt | 2020-02-04 | 2 | -2/+2 | |
| | | ||||||
| * | Added cmd2.utils.Settable to the cmd2 namespace and updated examples and docs | Todd Leonhardt | 2020-02-04 | 16 | -21/+45 | |
| | | ||||||
| * | Fixed doc build and updated README | Todd Leonhardt | 2020-02-04 | 2 | -3/+2 | |
| | | ||||||
| * | Fixed a bug in a very unusual case and added some unit tests | Todd Leonhardt | 2020-02-04 | 4 | -5/+33 | |
| | | ||||||
| * | Updated CHANGELOG and made a few minor tweaks | Todd Leonhardt | 2020-02-04 | 4 | -83/+12 | |
| | | ||||||
| * | Updated set command to support tab completion of values | Kevin Van Brunt | 2020-02-04 | 6 | -132/+181 | |
|/ | ||||||
* | Merge pull request #869 from python-cmd2/docs_os | Todd Leonhardt | 2020-01-29 | 2 | -31/+98 | |
|\ | | | | | Updated docs on integrating with various operating system features |