summaryrefslogtreecommitdiff
path: root/completions/jshint
diff options
context:
space:
mode:
Diffstat (limited to 'completions/jshint')
-rw-r--r--completions/jshint14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/jshint b/completions/jshint
index ee89070a..3622cecf 100644
--- a/completions/jshint
+++ b/completions/jshint
@@ -6,19 +6,19 @@ _jshint()
_init_completion -s || return
case $prev in
- -v|--version|-h|--help|--exclude|--filename|-e|--extra-ext)
+ -v | --version | -h | --help | --exclude | --filename | -e | --extra-ext)
return
;;
- -c|--config)
+ -c | --config)
_filedir
return
;;
--reporter)
- COMPREPLY=( $(compgen -W "jslint checkstyle unix" -- "$cur") )
+ COMPREPLY=($(compgen -W "jslint checkstyle unix" -- "$cur"))
return
;;
--extract)
- COMPREPLY=( $(compgen -W "auto always never" -- "$cur") )
+ COMPREPLY=($(compgen -W "auto always never" -- "$cur"))
return
;;
esac
@@ -26,13 +26,13 @@ _jshint()
$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 js
} &&
-complete -F _jshint jshint
+ complete -F _jshint jshint
# ex: filetype=sh