summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Attempt to fix test result publishing on Azure PipelinesTodd Leonhardt2018-10-242-2/+2
|
* Attempt 3 at getting VSTS tox build workingTodd Leonhardt2018-10-241-0/+1
|
* attempt 2Todd Leonhardt2018-10-241-1/+0
|
* Attempt to use tox for VSTS buildsTodd Leonhardt2018-10-241-3/+6
|
* Merge pull request #588 from python-cmd2/tox_redundantTodd Leonhardt2018-10-232-2/+2
|\ | | | | Fix redundant environments in tox.ini
| * Fix redundant environments in tox.iniTodd Leonhardt2018-10-232-2/+2
|/
* Merge pull request #587 from python-cmd2/signal_threadsTodd Leonhardt2018-10-223-6/+15
|\ | | | | Ruggedized registration of SIGINT signal handler
| * cmdloop now checks to see if it is running in the main thread before ↵Todd Leonhardt2018-10-213-6/+15
|/ | | | attempting to register a signal handler for SIGINT
* Merge pull request #583 from python-cmd2/delete_colorizeTodd Leonhardt2018-10-194-33/+4
|\ | | | | Deleted Cmd.colorize() method and Cmd._colorcodes dictionary
| * Deleted Cmd.colorize() method and Cmd._colorcodes dictionary which were ↵Todd Leonhardt2018-10-184-33/+4
|/ | | | deprecated in 0.9.5
* Merge pull request #580 from fdiasdev/contributing-using-virtualenvTodd Leonhardt2018-10-171-11/+31
|\ | | | | Add Env setup documentation in CONTRIBUTING
| * Add conda activate environment on Contributing documentationFernando Dias2018-10-151-1/+1
| |
| * Merge branch 'master' into contributing-using-virtualenvTodd Leonhardt2018-10-152-2/+2
| |\ | |/ |/|
* | Merge pull request #581 from python-cmd2/invoke_tagTodd Leonhardt2018-10-152-2/+2
|\ \ | | | | | | Make name a required argument for the "invoke tag" command
| * | Updated outdated header comment in cmd2.pyTodd Leonhardt2018-10-141-1/+1
| | |
| * | Make name a required argument for the "invoke tag" commandTodd Leonhardt2018-10-141-1/+1
|/ / | | | | | | | | | | | | | | | | | | This causes the "invoke tag" command to function in an intuitive fashion as so: invoke tag tag_name Previously when name was an optional argument, the name needed to be set using a flag like so: invoke tag -n tag_name This has the side benefit of now making the recommended usage in the Contributor's Guide correct.
| * Add virtualenv setting up session on ContributingFernando Dias2018-10-141-5/+22
| |
| * Add conda env setup documentation in CONTRIBUTINGFernando Dias2018-10-131-14/+17
|/
* Updated formattingtest_oneKevin Van Brunt2018-10-131-1/+1
|
* Merge pull request #578 from python-cmd2/func_plus_hooks0.9.6kmvanbrunt2018-10-133-27/+37
|\ | | | | Func plus hooks
| * Removed venvKevin Van Brunt2018-10-131-4/+1
| |
| * Moved bug fixes to topKevin Van Brunt2018-10-131-4/+4
| |
| * Added bug fixes to change logKevin Van Brunt2018-10-131-0/+3
| |
| * RefactoredKevin Van Brunt2018-10-132-26/+30
| |
| * Argparse commands called as methods of PyscriptBridge now go through ↵Kevin Van Brunt2018-10-121-14/+15
| | | | | | | | onecmd_plus_hooks
| * Non-argparse commands called as methods of PyscriptBridge now go through ↵Kevin Van Brunt2018-10-121-1/+6
|/ | | | onecmd_plus_hooks
* Merge pull request #576 from python-cmd2/extra_argskmvanbrunt2018-10-124-18/+38
|\ | | | | You can now call a macro with extra arguments
| * You can now call a macro with extra argumentsKevin Van Brunt2018-10-124-18/+38
|/
* Merge pull request #575 from python-cmd2/prompt_updatekmvanbrunt2018-10-127-84/+86
|\ | | | | Do not asynchronously redraw continuation prompts
| * Documentation updatesKevin Van Brunt2018-10-125-10/+7
| |
| * Refactored async_alertKevin Van Brunt2018-10-111-56/+43
| |
| * Using wcwidth to calculate display width of promptKevin Van Brunt2018-10-114-26/+34
| |
| * Do not asynchronously update continuation promptsKevin Van Brunt2018-10-111-16/+26
|/
* Fixed invoke command text0.9.5Kevin Van Brunt2018-10-111-1/+1
|
* Filled in 0.9.5 release dateKevin Van Brunt2018-10-111-1/+1
|
* Merge pull request #573 from python-cmd2/double_dashkmvanbrunt2018-10-119-61/+123
|\ | | | | Double dash
| * Syle-based refactorKevin Van Brunt2018-10-111-2/+2
| |
| * Fixed ArgparseFunctor to allow flag looking tokens in REMAINDER sectionsKevin Van Brunt2018-10-103-4/+9
| |
| * Fixed issue where flag at beginning of REMAINDER section was tab completingKevin Van Brunt2018-10-102-18/+31
| |
| * Added code to handle -- in argparse completerKevin Van Brunt2018-10-106-57/+101
|/
* Merge pull request #571 from python-cmd2/argparse_remainderTodd Leonhardt2018-10-0916-85/+311
|\ | | | | Fixes related to handling of argparse.REMAINDER
| * Increasing code coverageKevin Van Brunt2018-10-091-0/+24
| |
| * Added unit testsKevin Van Brunt2018-10-091-1/+18
| |
| * Added additional unit test for StdSimTodd Leonhardt2018-10-091-0/+12
| |
| * Added tests for token_resembles_flagKevin Van Brunt2018-10-092-2/+18
| |
| * Fixed error where an inner stream like StringIO doesn't have a buffer attribute.Kevin Van Brunt2018-10-091-2/+8
| |
| * Added ability for argcompleter to determine difference between flag and ↵Kevin Van Brunt2018-10-092-15/+37
| | | | | | | | negative number
| * Use argparser to determine if a token looks like an optionalKevin Van Brunt2018-10-071-17/+2
| |
| * Allowing negative number values when checking for optional prefix charactersKevin Van Brunt2018-10-071-5/+6
| |
| * Added check to prevent optional value strings from being accepted as positionalsKevin Van Brunt2018-10-061-4/+23
| |