summaryrefslogtreecommitdiff
path: root/cmd2
Commit message (Expand)AuthorAgeFilesLines
* Added commentKevin Van Brunt2019-06-141-0/+4
* Merge branch 'master' into history_fixesKevin Van Brunt2019-06-146-183/+203
|\
| * Fixed flake8 errorKevin Van Brunt2019-06-131-1/+0
| * Reverted making constant values for colors. This will be done on a future tic...Kevin Van Brunt2019-06-133-16/+11
| * Transcript generation no longer terminates _cmdloop() when a command returns ...Kevin Van Brunt2019-06-121-7/+8
| * Fixed UnsupportedOperation on fileno error when a shell command was one of th...Kevin Van Brunt2019-06-121-11/+5
| * Made constants for color valuesKevin Van Brunt2019-06-123-11/+17
| * Revert "Move argparse parsing of CLI args back to cmdloop() from __init__()"Kevin Van Brunt2019-06-121-17/+16
| * Move argparse parsing of CLI args back to cmdloop() from __init__()Todd Leonhardt2019-06-111-16/+17
| * Removed support for cmd.cmdqueueKevin Van Brunt2019-06-111-43/+48
| * Updated change log and commentKevin Van Brunt2019-06-071-1/+1
| * Removed copyright headers from source files and updated LICENSE with current ...Kevin Van Brunt2019-06-072-6/+0
| * Removed self._should_quit from cmd2 and add logic to PyscriptBridge to return...Kevin Van Brunt2019-06-072-14/+19
| * Made comment more accurateKevin Van Brunt2019-06-071-1/+1
| * Moved a new helper function from cmd2.py to utils.py where it probably belongedTodd Leonhardt2019-06-072-15/+17
| * Extracted duplicated code to utility functionTodd Leonhardt2019-06-062-4/+17
| * Refactored how and when transcript file glob patterns are expanded in order t...Todd Leonhardt2019-06-062-13/+29
| * Transcript testing now properly handles commands which signal the application...Todd Leonhardt2019-06-061-3/+9
| * runcmds_plus_hooks now handles HistoryItemsKevin Van Brunt2019-06-061-2/+5
| * Merge branch 'master' into script_refactorKevin Van Brunt2019-06-062-91/+184
| |\
| * | Removed _STOP_AND_EXIT cmd2 class member since it was meant to be a boolean c...Kevin Van Brunt2019-06-041-6/+4
| * | Removing duplicate functionality by calling runcmds_plus_hooks() to run cmdqueueKevin Van Brunt2019-05-241-10/+11
| * | Running commands from history stops if a command returns True for its stop va...Kevin Van Brunt2019-05-241-5/+1
| * | Since transcript generation actually runs the commands, it now returns whethe...Kevin Van Brunt2019-05-241-4/+10
| * | Fixed count in output message printed after transcript generationKevin Van Brunt2019-05-241-2/+7
| * | Stopping transcript generation if a command returns True for its stop valueKevin Van Brunt2019-05-241-1/+4
| * | Removed most return statements from finally blocks to avoid hiding exceptionsKevin Van Brunt2019-05-241-39/+31
| * | Fixed spellingKevin Van Brunt2019-05-231-1/+1
| * | Returning value of stop from history command when it runs a scriptKevin Van Brunt2019-05-231-4/+5
| * | Change load to run scripts immediately instead of queueing commandsKevin Van Brunt2019-05-231-63/+42
* | | Adding individual lines of commands to readline history to match how it was e...Kevin Van Brunt2019-06-141-5/+7
* | | Fixed bug where multiline commands were always being expanded in history output.Kevin Van Brunt2019-06-141-11/+12
* | | Fixed issue where input line was being saved before all of a multiline comman...Kevin Van Brunt2019-06-141-2/+6
* | | Fix history display issuesTodd Leonhardt2019-06-132-3/+3
| |/ |/|
* | Always remove persistent history file when history is cleared since it no lon...Kevin Van Brunt2019-06-061-5/+6
* | Changed wrapping point of some help textKevin Van Brunt2019-06-061-11/+11
* | Changed wrapping point of history's help text to match all other help text in...Kevin Van Brunt2019-06-051-1/+2
* | Minor rewording of a couple commentsTodd Leonhardt2019-05-271-2/+2
* | Add the -a/--all flag to the history command for showing all commands includi...Todd Leonhardt2019-05-272-17/+44
* | Fix a bug discovered during manual testingTodd Leonhardt2019-05-271-1/+2
* | Improve unit test coverage for historykotfu2019-05-251-2/+2
* | Refactored implementation of HistoryItem.__str__ and added an explicit Histor...Todd Leonhardt2019-05-251-4/+1
* | Switch back to os.path from pathlibkotfu2019-05-251-7/+6
* | switch _initialize_history() from os.path to pathlibkotfu2019-05-251-6/+7
* | Manually check whether persistent_history_file is a directorykotfu2019-05-251-4/+7
* | Fixed flake errorkotfu2019-05-251-0/+1
* | Resolve PR feedbackkotfu2019-05-252-33/+34
* | Fix flake8 errorskotfu2019-05-241-3/+5
* | Populate readline history from unpickled historykotfu2019-05-241-22/+23
* | Refactor HistoryItem to not subclass strkotfu2019-05-242-30/+36