Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add some documentation | kotfu | 2018-04-29 | 1 | -1/+29 | |
| | ||||||
* | Missed a mutable argument | kotfu | 2018-04-29 | 1 | -1/+1 | |
| | ||||||
* | Really get rid of the inputFrom stuff, including documentation | kotfu | 2018-04-29 | 1 | -10/+0 | |
| | ||||||
* | multilineCommands -> multiline_commands | kotfu | 2018-04-29 | 1 | -9/+9 | |
| | ||||||
* | outputTo -> output_to | kotfu | 2018-04-29 | 1 | -5/+5 | |
| | ||||||
* | pipeTo -> pipe_to | kotfu | 2018-04-29 | 1 | -8/+8 | |
| | ||||||
* | _command_and_args switched to static method | kotfu | 2018-04-29 | 1 | -1/+2 | |
| | ||||||
* | multilineCommand -> multiline_command | kotfu | 2018-04-29 | 1 | -9/+9 | |
| | ||||||
* | Move quotes and redirection_chars from arguments to constants | kotfu | 2018-04-29 | 1 | -18/+28 | |
| | | | | Since the tab completion code relies on these same constants, if we allow them to be passed to the statement parser, we could have a situation where the statement parser and tab completion return different results. | |||||
* | Cleanup requested changes in pull request | kotfu | 2018-04-29 | 1 | -8/+7 | |
| | ||||||
* | Add description of comment-matching regex | kotfu | 2018-04-27 | 1 | -0/+24 | |
| | ||||||
* | First stage of refactoring cmd2.parseline() for tab completion | kotfu | 2018-04-26 | 1 | -24/+80 | |
| | ||||||
* | Add type hinting | kotfu | 2018-04-24 | 1 | -28/+43 | |
| | ||||||
* | Refactoring and code cleanup | kotfu | 2018-04-24 | 1 | -3/+3 | |
| | | | | | | - rename CommandParser to StatementParser - move tests from test_shlexparsing.py to test_parsing.py - standardize the output of the parse() method into a variable called statement. | |||||
* | Multiline now working | kotfu | 2018-04-23 | 1 | -2/+2 | |
| | ||||||
* | Multiline support mostly done | kotfu | 2018-04-23 | 1 | -2/+13 | |
| | ||||||
* | More work on multiline | kotfu | 2018-04-23 | 1 | -0/+4 | |
| | ||||||
* | Fix parsing of input redirection and appending output | kotfu | 2018-04-23 | 1 | -7/+8 | |
| | ||||||
* | Shortcuts and aliases fully implemented. | kotfu | 2018-04-23 | 1 | -7/+7 | |
| | ||||||
* | Shortcut and alias processing added to CommandParser() | kotfu | 2018-04-23 | 1 | -3/+41 | |
| | ||||||
* | Updates to comments and todo list | kotfu | 2018-04-22 | 1 | -3/+1 | |
| | ||||||
* | args has to be ‘’ not None | kotfu | 2018-04-22 | 1 | -3/+6 | |
| | ||||||
* | refactor Command() to Statement(str) | kotfu | 2018-04-22 | 1 | -21/+46 | |
| | | | | | - Command class renamed to Statement, and is now a subclass of str. - str’s are immutable, and the string needs to contain the arguments, so revise the parseString method | |||||
* | A bit of renaming | kotfu | 2018-04-21 | 1 | -11/+11 | |
| | ||||||
* | Move CommandParser class into its own file | kotfu | 2018-04-20 | 1 | -0/+212 | |