summaryrefslogtreecommitdiffstats
path: root/completions/autoscan
diff options
context:
space:
mode:
Diffstat (limited to 'completions/autoscan')
-rw-r--r--completions/autoscan24
1 files changed, 13 insertions, 11 deletions
diff --git a/completions/autoscan b/completions/autoscan
index e007143..fe48b56 100644
--- a/completions/autoscan
+++ b/completions/autoscan
@@ -1,34 +1,36 @@
# autoscan(1) completion -*- shell-script -*-
-_autoscan()
+_comp_cmd_autoscan()
{
- local cur prev words cword split
- _init_completion -s || return
+ local cur prev words cword was_split comp_args
+ _comp_initialize -s -- "$@" || return
+ local noargopts='!(-*|*[BI]*)'
+ # shellcheck disable=SC2254
case "$prev" in
- --help | --version | -!(-*)[hV])
+ --help | --version | -${noargopts}[hV])
return
;;
- --prepend-include | --include | -!(-*)[BI])
- _filedir -d
+ --prepend-include | --include | -${noargopts}[BI])
+ _comp_compgen_filedir -d
return
;;
esac
- $split && return
+ [[ $was_split ]] && return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ _comp_compgen_help
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
if [[ $1 == *autoupdate ]]; then
- _filedir '@(ac|in)'
+ _comp_compgen_filedir '@(ac|in)'
else
- _filedir -d
+ _comp_compgen_filedir -d
fi
} &&
- complete -F _autoscan autoscan autoupdate
+ complete -F _comp_cmd_autoscan autoscan autoupdate
# ex: filetype=sh