summaryrefslogtreecommitdiff
path: root/tests/test_bashcomplete.py
Commit message (Collapse)AuthorAgeFilesLines
* apply pyupgrade --py36-plusDavid Lord2020-04-191-1/+0
|
* apply blackDavid Lord2020-03-061-176/+241
|
* apply reorder-python-importsDavid Lord2020-03-061-1/+0
|
* don't complete options after separatorbertolinocastro2020-02-261-0/+27
|
* Remove hidden commands and options from completion resultsNicholas Wiles2018-09-121-0/+36
|
* Fix bash completion when defaults are present and the way subcommands are ↵Nicholas Wiles2018-07-031-24/+100
| | | | | | | | handled. This makes the completion logic behave the same way the paser does. Fixes #925 Fixes #919
* support descriptions for zsh completionsNicholas Wiles2018-05-181-86/+97
| | | | | | use associative array for zsh completion response add documentation for completion help strings fix missing short_help on commands that broke ZSH auto documentation
* Allow returning of user completions that don’t always begin with the ↵Nicholas Wiles2017-10-061-4/+20
| | | | incomplete term.
* fix overzealous completion when required options are presentNicholas Wiles2017-05-311-4/+5
|
* Fix bashautocompletion of arguments on chained commandsNicholas Wiles2017-05-021-0/+26
|
* use generator when returning completionsNicholas Wiles2017-04-151-1/+2
|
* Merge branch 'master' into feature/bash_autocompletion_6.6Nicholas Wiles2017-03-291-0/+167
|\ | | | | | | | | | | | | # Conflicts: # click/_bashcomplete.py # docs/bashcomplete.rst # tests/test_bashcomplete.py
| * Issue #535: Bash completion for click.Choice()Peter Kelley2017-03-281-0/+167
| | | | | | | | | | | | | | | | Added support for bash completion of type=click.Choice Options and Arguments. Added comprehensive tests for bash completion. There are many scenarios present for arguments.
* | Add choices to autocompletionNicholas Wiles2017-03-271-2/+9
| |
* | Merge remote-tracking branch 'click/master' into feature/bash_autocompletion_6.6Nicholas Wiles2017-03-261-15/+45
|\ \ | |/ | | | | | | | | | | # Conflicts: # click/__init__.py # click/_bashcomplete.py # tests/test_bashcomplete.py
| * Fix #630: Bash completion for nested commands brokenPeter Kelley2016-08-191-1/+43
| | | | | | | | | | | | When concatenating protected_args and args, protected_args should be prepended. Otherwise the arguments are out of order and an incorrect subcommand is choosen.
* | Updated tests for autocompletionNicholas Wiles2017-03-261-1/+19
|/
* bashcomplete: Adapt to changes for chain commandsMarkus Unterwaditzer2016-03-241-0/+20
Done in 0a2919f34fcbc635d8530b4c5b60bf119b2bcedb Fix #471