summaryrefslogtreecommitdiffstats
path: root/completions/yum-arch
diff options
context:
space:
mode:
Diffstat (limited to 'completions/yum-arch')
-rw-r--r--completions/yum-arch12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/yum-arch b/completions/yum-arch
index 883c77e..070d020 100644
--- a/completions/yum-arch
+++ b/completions/yum-arch
@@ -1,16 +1,16 @@
# yum-arch(8) completion -*- shell-script -*-
-_yum_arch()
+_comp_cmd_yum_arch()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '-d -v -vv -n -c -z -s -l -q' -- "$cur"))
+ _comp_compgen -- -W '-d -v -vv -n -c -z -s -l -q'
else
- _filedir -d
+ _comp_compgen_filedir -d
fi
} &&
- complete -F _yum_arch yum-arch
+ complete -F _comp_cmd_yum_arch yum-arch
# ex: filetype=sh