summaryrefslogtreecommitdiff
path: root/cmd2/clipboard.py
Commit message (Collapse)AuthorAgeFilesLines
* Added support for 8-bit/256-colors with the cmd2.EightBitFg and ↵Kevin Van Brunt2021-10-181-1/+1
| | | | | | | | | | | | | | cmd2.EightBitBg classes. Added support for 24-bit/RGB colors with the cmd2.RgbFg and cmd2.RgbBg classes. Removed dependency on colorama. Deprecated cmd2.fg. Use cmd2.Fg instead. Deprecated cmd2.bg. Use cmd2.Bg instead. Changed type of ansi.allow_style from a string to an ansi.AllowStyle Enum class. Fixed bug where using choices on a Settable didn't verify that a valid choice had been entered.
* Some mypy validation fixesEric Lin2021-03-181-2/+6
|
* Add in isort changesTodd Leonhardt2021-01-311-1/+3
|
* Add black for automatic code formatTodd Leonhardt2021-01-311-3/+2
|
* Changed isort to force wrapping of imports to reduce merge conflicts from ↵Eric Lin2021-01-221-1/+3
| | | | minor import changes.
* Fix what is fundamentally a Pyperclip bug on headless Linux systems without ↵Todd Leonhardt2019-09-021-1/+2
| | | | Gtk libraries
* Fixed a bug when using WSL when all Windows paths have been removed from $PATHTodd Leonhardt2019-08-121-1/+2
|
* Require pyperclip >= 1.6 which simplifies clipboard.pyTodd Leonhardt2019-06-291-20/+4
|
* Cleaned up some PyCharm warningsTodd Leonhardt2019-03-131-1/+1
|
* Moved clipboard/pastebuffer functionality to new file clipboard.pyTodd Leonhardt2018-06-181-0/+49
Also: - Converted global can_clip variable to an instance attribute of cmd2.Cmd class