summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed path completion case where cwd is just a slashKevin Van Brunt2019-04-051-1/+5
|
* Started addressing my PR commentsTodd Leonhardt2019-04-021-26/+7
|
* Removed repeated block of codeKevin Van Brunt2019-03-271-7/+0
|
* Merge branch 'master' into capture_popenKevin Van Brunt2019-03-271-16/+30
|\
| * Fixed flake warningKevin Van Brunt2019-03-221-3/+2
| |
| * Corrected what prompt variable was being usedKevin Van Brunt2019-03-211-3/+3
| |
| * Fixed issue when printing alerts caused by a prompt with a new line characterKevin Van Brunt2019-03-211-13/+28
| |
* | Renamed stuff and removed unneeded KeyboardInterrupt protectionKevin Van Brunt2019-03-271-7/+7
| |
* | Added sigint protection around some state variable changesKevin Van Brunt2019-03-271-43/+46
| |
* | Make sure stdout is a terminal before running 'stty sane'Kevin Van Brunt2019-03-271-2/+3
| |
* | Moved indentation and added clarifying commentsKevin Van Brunt2019-03-241-3/+5
| |
* | Fixed indentation issue that caused cur_pipe_proc_reader to be overwrittenKevin Van Brunt2019-03-241-16/+11
| |
* | Don't allow built-in cmdloop to run outside of main threadKevin Van Brunt2019-03-231-3/+12
| |
* | Forward SIGINT to current pipe process instead of terminating it. This is ↵Kevin Van Brunt2019-03-231-4/+4
| | | | | | | | | | | | consistent with our do_shell() command, ppaged() command, and other shells.
* | Added protection from SIGINT when in a critical section of codeKevin Van Brunt2019-03-221-44/+37
| |
* | Ctrl-C only kills the process being piped if the current command created itKevin Van Brunt2019-03-211-34/+54
| |
* | Routing sys.stdout to piped processes to catch print() type statementsKevin Van Brunt2019-03-201-4/+4
| |
* | Terminate pipe processes instead of sending them SIGINTsKevin Van Brunt2019-03-201-3/+3
| |
* | Handled possible race conditionKevin Van Brunt2019-03-201-11/+18
| |
* | Printing an error instead of raising and exception if setting a variable ↵Kevin Van Brunt2019-03-201-1/+2
| | | | | | | | that does not exist
* | Not running command if redirection failsKevin Van Brunt2019-03-201-48/+56
| |
* | Updated commentKevin Van Brunt2019-03-201-1/+2
| |
* | Handled issue where nested pipe processes were not being closed in the right ↵Kevin Van Brunt2019-03-201-7/+19
| | | | | | | | order upon SIGINT events
* | Updated ppaged to not use self.pipe_procKevin Van Brunt2019-03-201-6/+5
| |
* | Capturing output from piped process when redirectingKevin Van Brunt2019-03-201-12/+18
| |
* | Simiplified codeKevin Van Brunt2019-03-201-13/+9
| |
* | Updated ProcReader to determine which of the process streams are pipesKevin Van Brunt2019-03-201-4/+9
| |
* | Only capturing Popen output when stdout is a StdSim objectKevin Van Brunt2019-03-201-4/+8
| |
* | Added ProcReader class to capture output of a Popen processKevin Van Brunt2019-03-201-2/+5
|/
* Merge branch 'master' into load_generate_transcriptTodd Leonhardt2019-03-191-113/+91
|\
| * Fixed bug where it wasn't possible for restore_output to know if the command ↵Kevin Van Brunt2019-03-191-22/+19
| | | | | | | | was piping
| * The pipe process in redirection now writes its output to self.stdout so we ↵Kevin Van Brunt2019-03-191-6/+6
| | | | | | | | can capture it
| * Removed Statekeeper class and renamed some variablesKevin Van Brunt2019-03-191-39/+18
| |
| * Keeping track of redirection for each commandKevin Van Brunt2019-03-191-69/+82
| |
| * Simplified quit_on_sigint handlingKevin Van Brunt2019-03-181-27/+16
| |
* | Now consistently use -t flag for transcript generation for both history and ↵Todd Leonhardt2019-03-191-4/+3
| | | | | | | | load commands
* | Combined two conditionalsTodd Leonhardt2019-03-191-5/+3
| |
* | Updated CHANGELOGTodd Leonhardt2019-03-191-14/+10
| | | | | | | | | | | | Also: - Removed guard clauses which kmvanbrunt promises will be unecessary with his upcoming change - Moved transcript path validation inside _generate_transcript()
* | Addressed review commentsTodd Leonhardt2019-03-181-7/+17
| |
* | Merge branch 'master' into load_generate_transcriptTodd Leonhardt2019-03-181-61/+77
|\ \ | |/
| * Merge branch 'master' into attributesTodd Leonhardt2019-03-171-10/+25
| |\
| * | Updated CHANGELOG and fixed a typo in a type hintTodd Leonhardt2019-03-161-1/+1
| | |
| * | Merge branch 'master' into attributesTodd Leonhardt2019-03-161-4/+19
| |\ \
| * | | Aliases are now stored within the StatementParser instanceTodd Leonhardt2019-03-161-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Also: - Added read-only aliases property to cmd2.Cmd to get aliases from the StatementParser - Added a setter for the allow_redirection property in cmd2.Cmd - Made some initialization code more self-documenting
| * | | Converted dynamic class attributes to instance attributesTodd Leonhardt2019-03-141-31/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following attritubes which are intended to be dynamically settable at runtime are now instance attributes: - colors - continuation_prompt - debug - echo - editor - feedback_to_output - locals_in_py - quiet - timing - settable Also: - Moved code for finding a default editor to a function in utils and set a new DEFAULT_EDITOR class attribute with the return value of that
| * | | Converted class attributes which aren't intended to be dynamically settable ↵Todd Leonhardt2019-03-141-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to instance attributes The following are now instance attributes: - allow_cli_args - default_to_shell - quit_on_sigint The following class attribute was deleted due to lack of use: - reserved_words The following instance attribute was deleted due to lack of use: - keywords
| * | | Made several attributes of StatementParser immutableTodd Leonhardt2019-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The following attributes within StatementParser were converted from mutable lists to immutable tuples: - terminators - multiline_commands - shortcuts
| * | | Merge branch 'master' into attributesTodd Leonhardt2019-03-141-3/+16
| |\ \ \
| * | | | First stage of attribute refactoringTodd Leonhardt2019-03-131-20/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following are now arguments to cmd2.Cmd.__init__() instead of class attributes: * allow_redirection * multiline_commands * terminators * shortcuts Added a couple read-only properties for convenience of cmd2.Cmd accessing immutable members from self.statement_parser
| * | | | Fixed accidental paste typoTodd Leonhardt2019-03-131-1/+1
| | | | |