summaryrefslogtreecommitdiffstats
path: root/completions/bind
diff options
context:
space:
mode:
Diffstat (limited to 'completions/bind')
-rw-r--r--completions/bind20
1 files changed, 10 insertions, 10 deletions
diff --git a/completions/bind b/completions/bind
index 2ee428b..12d2343 100644
--- a/completions/bind
+++ b/completions/bind
@@ -1,36 +1,36 @@
# bash bind completion -*- shell-script -*-
-_bind()
+_comp_cmd_bind()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
case $prev in
-*[lpPsSvVrxX])
return
;;
-*m)
- COMPREPLY=($(compgen -W "emacs emacs-standard emacs-meta
- emacs-ctlx vi vi-move vi-command vi-insert" -- "$cur"))
+ _comp_compgen -- -W "emacs emacs-standard emacs-meta emacs-ctlx vi
+ vi-move vi-command vi-insert"
return
;;
-*f)
- _filedir
+ _comp_compgen_filedir
return
;;
-*[qu])
- COMPREPLY=($(compgen -W '$("$1" -l)' -- "$cur"))
+ _comp_compgen_split -- "$("$1" -l)"
return
;;
esac
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
+ _comp_compgen_usage -c help -s "$1"
return
fi
- COMPREPLY=($(compgen -A binding -- "$cur"))
+ _comp_compgen -- -A binding
} &&
- complete -F _bind bind
+ complete -F _comp_cmd_bind bind
# ex: filetype=sh