summaryrefslogtreecommitdiffstats
path: root/completions/installpkg
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
commitf4acb49ea148cdd899f7f29f1591c7bc853c2135 (patch)
treeb62d60873864065d6428a84a119dd8a3c90f1397 /completions/installpkg
parentAdding upstream version 1:2.11. (diff)
downloadbash-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 '')
-rw-r--r--completions/installpkg20
1 files changed, 10 insertions, 10 deletions
diff --git a/completions/installpkg b/completions/installpkg
index 7455eb1..71116b0 100644
--- a/completions/installpkg
+++ b/completions/installpkg
@@ -1,33 +1,33 @@
# Slackware Linux installpkg completion -*- shell-script -*-
-_installpkg()
+_comp_cmd_installpkg()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
case "$prev" in
--root)
- _filedir -d
+ _comp_compgen_filedir -d
return
;;
--priority)
- COMPREPLY=($(compgen -W 'ADD REC OPT SKP' -- "$cur"))
+ _comp_compgen -- -W 'ADD REC OPT SKP'
return
;;
--tagfile)
- _filedir
+ _comp_compgen_filedir
return
;;
esac
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '--warn --md5sum --root --infobox --terse
- --menu --ask --priority --tagfile' -- "$cur"))
+ _comp_compgen -- -W '--warn --md5sum --root --infobox --terse --menu
+ --ask --priority --tagfile'
return
fi
- _filedir 't[bglx]z'
+ _comp_compgen_filedir 't[bglx]z'
} &&
- complete -F _installpkg installpkg
+ complete -F _comp_cmd_installpkg installpkg
# ex: filetype=sh