summaryrefslogtreecommitdiff
path: root/completions/flake8
diff options
context:
space:
mode:
Diffstat (limited to 'completions/flake8')
-rw-r--r--completions/flake810
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/flake8 b/completions/flake8
index 6f0be12f..f18351e8 100644
--- a/completions/flake8
+++ b/completions/flake8
@@ -6,15 +6,15 @@ _flake8()
_init_completion -s || return
case $prev in
- -h|--help|--version)
+ --help|--version|-!(-*)h)
return
;;
--format)
- COMPREPLY=( $( compgen -W 'default pylint' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'default pylint' -- "$cur") )
return
;;
- -j|--jobs)
- COMPREPLY=( $( compgen -W "auto {1..$(_ncpus)}" -- "$cur" ) )
+ --jobs|-!(-*)j)
+ COMPREPLY=( $(compgen -W "auto {1..$(_ncpus)}" -- "$cur") )
return
;;
--output-file|--append-config|--config)
@@ -30,7 +30,7 @@ _flake8()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi