summaryrefslogtreecommitdiffstats
path: root/completions/aclocal
diff options
context:
space:
mode:
Diffstat (limited to 'completions/aclocal')
-rw-r--r--completions/aclocal20
1 files changed, 10 insertions, 10 deletions
diff --git a/completions/aclocal b/completions/aclocal
index 010862f..b23ff72 100644
--- a/completions/aclocal
+++ b/completions/aclocal
@@ -1,35 +1,35 @@
# aclocal(1) completion -*- shell-script -*-
-_aclocal()
+_comp_cmd_aclocal()
{
- local cur prev words cword split
- _init_completion -s || return
+ local cur prev words cword was_split comp_args
+ _comp_initialize -s -- "$@" || return
case "$prev" in
--help | --print-ac-dir | --version)
return
;;
--acdir | -I)
- _filedir -d
+ _comp_compgen_filedir -d
return
;;
--output)
- _filedir
+ _comp_compgen_filedir
return
;;
--warnings | -W)
local cats=(syntax unsupported)
- COMPREPLY=($(compgen -W \
- '${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
+ _comp_compgen -- -W '"${cats[@]}" "${cats[@]/#/no-}" all none
+ error'
return
;;
esac
- $split && return
+ [[ $was_split ]] && return
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ _comp_compgen_help
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
} &&
- complete -F _aclocal aclocal aclocal-1.1{0..6}
+ complete -F _comp_cmd_aclocal aclocal aclocal-1.1{0..6}
# ex: filetype=sh