summaryrefslogtreecommitdiffstats
path: root/completions/ypmatch
diff options
context:
space:
mode:
Diffstat (limited to 'completions/ypmatch')
-rw-r--r--completions/ypmatch15
1 files changed, 6 insertions, 9 deletions
diff --git a/completions/ypmatch b/completions/ypmatch
index 13249f0..db5a233 100644
--- a/completions/ypmatch
+++ b/completions/ypmatch
@@ -1,9 +1,9 @@
# bash completion for yp-tools -*- shell-script -*-
-_ypmatch()
+_comp_cmd_ypmatch()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
local map cmd=${1##*/}
@@ -12,15 +12,12 @@ _ypmatch()
if [[ $cmd == ypmatch && $cword -eq 1 && ${#words[@]} -eq 3 ]]; then
map=${words[2]}
- COMPREPLY=($(compgen -W '$(ypcat $map 2>/dev/null | \
- cut -d':' -f 1)' -- "$cur"))
+ _comp_compgen_split -- "$(ypcat "$map" 2>/dev/null | cut -d':' -f 1)"
else
[[ $cmd == ypmatch && $cword -ne 2 ]] && return
- COMPREPLY=($(compgen -W \
- '$(printf "%s\n" $(ypcat -x 2>/dev/null | \
- cut -d"\"" -f 2))' -- "$cur"))
+ _comp_compgen_split -- "$(ypcat -x 2>/dev/null | cut -d'"' -f 2)"
fi
} &&
- complete -F _ypmatch ypmatch ypcat
+ complete -F _comp_cmd_ypmatch ypmatch ypcat
# ex: filetype=sh