summaryrefslogtreecommitdiff
path: root/completions/uscan
diff options
context:
space:
mode:
Diffstat (limited to 'completions/uscan')
-rw-r--r--completions/uscan10
1 files changed, 5 insertions, 5 deletions
diff --git a/completions/uscan b/completions/uscan
index de0e7174..441bae3f 100644
--- a/completions/uscan
+++ b/completions/uscan
@@ -7,7 +7,7 @@ _uscan()
case $prev in
--package)
- COMPREPLY=( $(_xfunc apt-cache _apt_cache_src_packages))
+ COMPREPLY=($(_xfunc apt-cache _apt_cache_src_packages))
return
;;
--watchfile)
@@ -18,16 +18,16 @@ _uscan()
_filedir -d
return
;;
- --timeout|--upstream-version|--download-version|--check-dirname-level|--check-dirname-regex)
- COMPREPLY=( )
+ --timeout | --upstream-version | --download-version | --check-dirname-level | --check-dirname-regex)
+ COMPREPLY=()
return
;;
esac
$split && return
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
} &&
-complete -F _uscan uscan
+ complete -F _uscan uscan
# ex: filetype=sh