summaryrefslogtreecommitdiffstats
path: root/completions/zopfli
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/zopfli19
-rw-r--r--completions/zopflipng25
2 files changed, 23 insertions, 21 deletions
diff --git a/completions/zopfli b/completions/zopfli
index 8c02885..49d5305 100644
--- a/completions/zopfli
+++ b/completions/zopfli
@@ -1,9 +1,9 @@
# bash completion for zopfli -*- shell-script -*-
-_zopfli()
+_comp_cmd_zopfli()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
case $prev in
-h)
@@ -12,18 +12,19 @@ _zopfli()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W \
- '$(_parse_help "$1" -h | command sed -e "s/#$//")' -- "$cur"))
+ _comp_compgen -R help -- -h
+ ((${#COMPREPLY[@]})) &&
+ _comp_compgen -- -W '"${COMPREPLY[@]%#}"'
[[ ${COMPREPLY-} == --i ]] && compopt -o nospace
return
fi
- _tilde "$cur" || return
+ _comp_compgen_tilde && return
- local IFS=$'\n' xspec="*.@(gz|t[ag]z)"
+ local xspec="*.@(gz|t[ag]z)"
compopt -o filenames
- COMPREPLY=($(compgen -f -X "$xspec" -- "$cur") $(compgen -d -- "$cur"))
+ _comp_compgen -- -f -X "$xspec" -o plusdirs
} &&
- complete -F _zopfli zopfli
+ complete -F _comp_cmd_zopfli zopfli
# ex: filetype=sh
diff --git a/completions/zopflipng b/completions/zopflipng
index 4526cd9..76a0c30 100644
--- a/completions/zopflipng
+++ b/completions/zopflipng
@@ -1,39 +1,40 @@
# bash completion for zopflipng -*- shell-script -*-
-_zopflipng()
+_comp_cmd_zopflipng()
{
- 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
-h | --help)
return
;;
--splitting)
- COMPREPLY=($(compgen -W '{0..3}' -- "$cur"))
+ _comp_compgen -- -W '{0..3}'
return
;;
esac
- $split && return
+ [[ $was_split ]] && return
if [[ $cur == -* ]]; then
- COMPREPLY=($(_parse_help "$1" -h))
- COMPREPLY=($(compgen -W '${COMPREPLY[@]%:}' -- "$cur"))
+ _comp_compgen -R help -- -h
+ ((${#COMPREPLY[@]})) &&
+ _comp_compgen -- -W '"${COMPREPLY[@]%:}"'
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
if [[ ${words[*]} != *\ --prefix=* ]]; then
# 2 png args only if --prefix not given
- local args
- _count_args
- ((args < 3)) && _filedir png
+ local REPLY
+ _comp_count_args
+ ((REPLY < 3)) && _comp_compgen_filedir png
else
# otherwise arbitrary number of png args
- _filedir png
+ _comp_compgen_filedir png
fi
} &&
- complete -F _zopflipng zopflipng
+ complete -F _comp_cmd_zopflipng zopflipng
# ex: filetype=sh