diff options
Diffstat (limited to 'completions/zopflipng')
-rw-r--r-- | completions/zopflipng | 25 |
1 files changed, 13 insertions, 12 deletions
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 |