diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f4acb49ea148cdd899f7f29f1591c7bc853c2135 (patch) | |
tree | b62d60873864065d6428a84a119dd8a3c90f1397 /completions/zopflipng | |
parent | Adding upstream version 1:2.11. (diff) | |
download | bash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.tar.xz bash-completion-f4acb49ea148cdd899f7f29f1591c7bc853c2135.zip |
Adding upstream version 1:2.12.0.upstream/1%2.12.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |