summaryrefslogtreecommitdiff
path: root/completions/flake8
diff options
context:
space:
mode:
Diffstat (limited to 'completions/flake8')
-rw-r--r--completions/flake818
1 files changed, 9 insertions, 9 deletions
diff --git a/completions/flake8 b/completions/flake8
index f18351e8..045c4095 100644
--- a/completions/flake8
+++ b/completions/flake8
@@ -6,22 +6,22 @@ _flake8()
_init_completion -s || return
case $prev in
- --help|--version|-!(-*)h)
+ --help | --version | -!(-*)h)
return
;;
--format)
- COMPREPLY=( $(compgen -W 'default pylint' -- "$cur") )
+ COMPREPLY=($(compgen -W 'default pylint' -- "$cur"))
return
;;
- --jobs|-!(-*)j)
- COMPREPLY=( $(compgen -W "auto {1..$(_ncpus)}" -- "$cur") )
+ --jobs | -!(-*)j)
+ COMPREPLY=($(compgen -W "auto {1..$(_ncpus)}" -- "$cur"))
return
;;
- --output-file|--append-config|--config)
+ --output-file | --append-config | --config)
_filedir
return
;;
- --include-in-doctest|--exclude-from-doctest)
+ --include-in-doctest | --exclude-from-doctest)
_filedir py
return
;;
@@ -30,13 +30,13 @@ _flake8()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
_filedir py
} &&
-complete -F _flake8 flake8
+ complete -F _flake8 flake8
# ex: filetype=sh