| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Correcting when to add an opening quote | Kevin Van Brunt | 2018-04-14 | 1 | -3/+3 | |
| | | | ||||||
| | * | Added more clarification to comment | Kevin Van Brunt | 2018-04-13 | 1 | -5/+4 | |
| | | | ||||||
| | * | Added comment | Kevin Van Brunt | 2018-04-13 | 1 | -4/+5 | |
| | | | ||||||
| | * | Simplifying adding opening quotes | Kevin Van Brunt | 2018-04-13 | 2 | -170/+73 | |
| |/ | ||||||
| * | Fixed comment and changed Python 3 check to use six | Kevin Van Brunt | 2018-04-13 | 1 | -2/+2 | |
| | | ||||||
| * | Removed unused variables | Kevin Van Brunt | 2018-04-13 | 1 | -2/+0 | |
| | | ||||||
| * | Merge pull request #352 from python-cmd2/user_expansion | kmvanbrunt | 2018-04-13 | 2 | -47/+72 | |
| |\ | | | | | User expansion | |||||
| | * | Trying to fix Windows unit test when running on AppVeyor | Kevin Van Brunt | 2018-04-13 | 1 | -3/+3 | |
| | | | ||||||
| | * | Added better check for whether a path is a directory | Kevin Van Brunt | 2018-04-13 | 1 | -3/+4 | |
| | | | ||||||
| | * | Fixed unbound local warning | Kevin Van Brunt | 2018-04-13 | 1 | -3/+3 | |
| | | | ||||||
| | * | Added some basic user completion on Windows | Kevin Van Brunt | 2018-04-13 | 2 | -24/+26 | |
| | | | ||||||
| | * | Allowing the use of ~user expansion in paths | Kevin Van Brunt | 2018-04-12 | 2 | -43/+65 | |
| |/ | ||||||
| * | Merge pull request #351 from python-cmd2/bugfix/350 | Todd Leonhardt | 2018-04-12 | 1 | -3/+3 | |
| |\ | | | | | Pass the return value back through for wrapped functions. | |||||
| | * | #350 Pass the return value back through for wrapped functions. | Eric Lin | 2018-04-12 | 1 | -3/+3 | |
| |/ | ||||||
| * | Moved up date we plan to discontinue support for Python 2 on. | Todd Leonhardt | 2018-04-11 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #348 from python-cmd2/help_categories | Todd Leonhardt | 2018-04-11 | 5 | -17/+535 | |
| |\ | | | | | Help categories | |||||
| | * | Removed an emty line. | Eric Lin | 2018-04-11 | 1 | -1/+0 | |
| | | | ||||||
| | * | Added a with_category decorator that can be used to tag a command category. | Eric Lin | 2018-04-11 | 5 | -18/+192 | |
| | | | | | | | | | | | | | | | | | | | Changed the detection of with_argparse decorated commands to be less hacky/brittle. Now it tags the function with help_summary. Fixed issue with handling commands that provide a custom help_ function. We can now redirect the output to a string to be formatted with the other commands. Added some documentation explaining the new help categories. Updated unit tests. | |||||
| | * | Fixed issue where categorization is skipped when there's a help_<command> ↵ | Eric Lin | 2018-04-11 | 4 | -9/+138 | |
| | | | | | | | | | | | | | | | | | function provided. In verbose help, added check for argparse usage block (starting with 'usage: '), to skip that block and move to the next comment block Added unit tests for new categorization code Updated example to demonstrate skipping of argparse usage statement | |||||
| | * | Removed extra new line | Kevin Van Brunt | 2018-04-11 | 1 | -1/+0 | |
| | | | ||||||
| | * | Added verbose help output with help -v or help --verbose | Eric Lin | 2018-04-10 | 2 | -13/+67 | |
| | | | | | | | | | | | Reads the __doc__ for a command function and provides the first block of text for each command. Updated help_categories.py to demonstrate a multi-line comment block for a command. | |||||
| | * | Merge remote-tracking branch 'origin/master' into help_categories | Eric Lin | 2018-04-10 | 6 | -4/+11 | |
| | |\ | |/ |/| | ||||||
| * | | Preparing for 0.8.4 release0.8.4 | Kevin Van Brunt | 2018-04-10 | 5 | -6/+9 | |
| | | | ||||||
| * | | Added 0.8.3 dependency fix to change log | Kevin Van Brunt | 2018-04-10 | 1 | -1/+2 | |
| | | | ||||||
| * | | Merge pull request #347 from nsoranzo/setup_fixes | Todd Leonhardt | 2018-04-10 | 2 | -0/+3 | |
| |\ \ | | | | | | | Add wcwidth for setuptools>=18 and build universal wheels | |||||
| | * | | Build universal wheels | Nicola Soranzo | 2018-04-10 | 1 | -0/+2 | |
| | | | | | | | | | | | | | See See https://packaging.python.org/tutorials/distributing-packages/#universal-wheels | |||||
| | * | | Add wcwidth for setuptools>=18 | Nicola Soranzo | 2018-04-10 | 1 | -0/+1 | |
| |/ / | | | | | | | | | | | Missed in commit 2f4198ef94262dc0c747c34541a72128164dc340 . Fix https://github.com/python-cmd2/cmd2/issues/346 . | |||||
| | * | Fixed imports since new categorization feature requires Iterable | Todd Leonhardt | 2018-04-09 | 1 | -1/+1 | |
| | | | ||||||
| | * | Remove usage of optional type hinting which is not allowed in Python 2.7 | Todd Leonhardt | 2018-04-09 | 1 | -4/+6 | |
| | | | ||||||
| | * | Merge branch 'master' into help_categories | Todd Leonhardt | 2018-04-09 | 1 | -3/+3 | |
| | |\ | |/ |/| | ||||||
| * | | Swapped line order for comment clarity | Kevin Van Brunt | 2018-04-10 | 1 | -3/+3 | |
| | | | ||||||
| | * | Added a convenience function for tagging command categories. | Eric Lin | 2018-04-09 | 2 | -19/+32 | |
| | | | ||||||
| | * | Added ability to group commands by category when printing the help menu. | Eric Lin | 2018-04-09 | 2 | -3/+151 | |
| |/ | | | | Added example of multiple commands grouped by categories | |||||
| * | Updated version number of release0.8.3 | Kevin Van Brunt | 2018-04-09 | 5 | -5/+5 | |
| | | ||||||
| * | Merge pull request #338 from python-cmd2/doc_updates | kmvanbrunt | 2018-04-06 | 2 | -2/+2 | |
| |\ | | | | | Corrected docs | |||||
| | * | Corrected docs | Kevin Van Brunt | 2018-04-06 | 2 | -2/+2 | |
| |/ | ||||||
| * | Added new alias features to change log | Kevin Van Brunt | 2018-04-06 | 1 | -0/+2 | |
| | | ||||||
| * | Merge pull request #337 from python-cmd2/shell_expansion | kmvanbrunt | 2018-04-06 | 1 | -2/+3 | |
| |\ | | | | | No longer expanding env vars since the shell will do that | |||||
| | * | No longer expanding env vars since the shell will do that | Kevin Van Brunt | 2018-04-06 | 1 | -2/+3 | |
| |/ | ||||||
| * | Merge pull request #336 from python-cmd2/refactor | kmvanbrunt | 2018-04-03 | 1 | -6/+6 | |
| |\ | | | | | Refactored function | |||||
| | * | Refactored function | Kevin Van Brunt | 2018-04-03 | 1 | -6/+6 | |
| |/ | ||||||
| * | Merge pull request #335 from python-cmd2/completion_tweaks | kmvanbrunt | 2018-04-03 | 1 | -1/+31 | |
| |\ | | | | | Added padding to display matches for visual appeal | |||||
| | * | Added padding to display matches for visual appeal | Kevin Van Brunt | 2018-04-03 | 1 | -1/+31 | |
| |/ | ||||||
| * | Merge pull request #334 from python-cmd2/alias_commands | Todd Leonhardt | 2018-04-02 | 3 | -34/+93 | |
| |\ | | | | | Alias commands | |||||
| | * | Don't try to load empty or non-existent startup script | Kevin Van Brunt | 2018-04-02 | 2 | -6/+8 | |
| | | | ||||||
| | * | Added alias parse_line unit test | Kevin Van Brunt | 2018-04-02 | 1 | -0/+10 | |
| | | | ||||||
| | * | Added ability to query individual alias | Kevin Van Brunt | 2018-04-02 | 2 | -7/+27 | |
| | | | ||||||
| | * | Allowing aliases to contain other aliases | Kevin Van Brunt | 2018-04-02 | 1 | -12/+50 | |
| | | | ||||||
| | * | Allow an alias name to match a command name | Kevin Van Brunt | 2018-03-31 | 2 | -14/+3 | |
| |/ | ||||||
| * | Merge pull request #333 from python-cmd2/remove_extra_sorting | kmvanbrunt | 2018-03-31 | 2 | -69/+58 | |
| |\ | | | | | Removed unnecessary sorting and duplicate removal from the completers… | |||||
