Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed isort to force wrapping of imports to reduce merge conflicts from ↵ | Eric Lin | 2021-01-22 | 1 | -3/+10 |
| | | | | minor import changes. | ||||
* | Added info on semantic versioning and branching strategy to CONTRIBUTING.md | Todd Leonhardt | 2020-04-24 | 1 | -1/+0 |
| | | | | | | | Also: - Added isort to Pipenv dev - Added setup.cfg to make it easy to run flake8, doc8, and isort directly from the command line without using invoke - Ran isort to sort includes | ||||
* | Add history api documentation | kotfu | 2020-02-20 | 1 | -16/+26 |
| | |||||
* | Took out rstrip() calls that are no longer neeeded | Kevin Van Brunt | 2019-12-10 | 1 | -2/+2 |
| | |||||
* | Fixed bug where was sometimes showing raw and expanded commands when they ↵ | Kevin Van Brunt | 2019-07-17 | 1 | -3/+6 |
| | | | | weren't different | ||||
* | Removed unneeded (optional) text from docstrings | Kevin Van Brunt | 2019-06-26 | 1 | -3/+3 |
| | |||||
* | Fix verbose history tests and behavior | Todd Leonhardt | 2019-06-24 | 1 | -1/+1 |
| | |||||
* | Initial Commit for Issue 698 | xNinjaKittyx | 2019-06-24 | 1 | -2/+2 |
| | |||||
* | Added comment | Kevin Van Brunt | 2019-06-14 | 1 | -0/+4 |
| | |||||
* | Fixed bug where multiline commands were always being expanded in history output. | Kevin Van Brunt | 2019-06-14 | 1 | -11/+12 |
| | | | | Since the intention was to display their raw versions on 1 line in non-verbose mode, the code was rewritten to do so. | ||||
* | Fix history display issues | Todd Leonhardt | 2019-06-13 | 1 | -2/+2 |
| | | | | | | | | | | | Issues were two fold: - HistoryItem statement.raw was getting mangled for multiline commands due to macro-related changes in _input_line_to_statement() - HistoryItem pretty printing wasn't using rstrip() anymore in verbose mode I added a couple unit tests in the process of getting here. But we should add some explicit unit tests of _input_line_to_statement() for cases like: - basic single-line command - macro single-line command - multiline command | ||||
* | Minor rewording of a couple comments | Todd Leonhardt | 2019-05-27 | 1 | -2/+2 |
| | |||||
* | Add the -a/--all flag to the history command for showing all commands ↵ | Todd Leonhardt | 2019-05-27 | 1 | -11/+35 |
| | | | | | | | | | | including those persisted from previous sessions Also: - History class has been modified to keep track of the session start index - History class span(), str_search(), and regex_search() methods now take an optional 2nd boolean parameter `include_persisted` which determines whether or not commands persisted from previous sessions should be included by default - If a start index is manually specified, then it automatically includes the full search - Updates unit tests | ||||
* | Refactored implementation of HistoryItem.__str__ and added an explicit ↵ | Todd Leonhardt | 2019-05-25 | 1 | -4/+1 |
| | | | | HistoryItem unit test | ||||
* | Fixed flake error | kotfu | 2019-05-25 | 1 | -0/+1 |
| | |||||
* | Resolve PR feedback | kotfu | 2019-05-25 | 1 | -24/+25 |
| | |||||
* | Fix flake8 errors | kotfu | 2019-05-24 | 1 | -3/+5 |
| | |||||
* | Refactor HistoryItem to not subclass str | kotfu | 2019-05-24 | 1 | -24/+28 |
| | |||||
* | Initializing history now detects plaintext or pickle format | kotfu | 2019-05-24 | 1 | -0/+14 |
| | |||||
* | Cleaned up some PyCharm warnings | Todd Leonhardt | 2019-03-13 | 1 | -2/+2 |
| | |||||
* | Negative ending history indices include the referenced command, instead of ↵ | kotfu | 2019-03-11 | 1 | -9/+24 |
| | | | | excluding it | ||||
* | Allow both history indices to be negative | kotfu | 2019-03-10 | 1 | -3/+1 |
| | |||||
* | Clean up history command | kotfu | 2019-03-09 | 1 | -80/+103 |
| | |||||
* | Reworked get() on History class | kotfu | 2019-03-09 | 1 | -34/+57 |
| | |||||
* | Potential fixes for outstanding multi-line issues in history command | Todd Leonhardt | 2019-03-03 | 1 | -2/+2 |
| | |||||
* | expanded history searches with string or regex for #545 | kotfu | 2019-02-16 | 1 | -2/+3 |
| | | | | history -v with a string or regex search now searches both the entered command as well as the expanded command | ||||
* | Added -x option to history command for #545 | kotfu | 2019-02-09 | 1 | -6/+21 |
| | |||||
* | Extract history classes and test into their own files | kotfu | 2019-02-09 | 1 | -0/+151 |