summaryrefslogtreecommitdiffstats
path: root/completions/luserdel
diff options
context:
space:
mode:
Diffstat (limited to 'completions/luserdel')
-rw-r--r--completions/luserdel12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/luserdel b/completions/luserdel
index e36bda9..d36b256 100644
--- a/completions/luserdel
+++ b/completions/luserdel
@@ -1,9 +1,9 @@
# luserdel(1) completion -*- shell-script -*-
-_luserdel()
+_comp_cmd_luserdel()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
case $prev in
--help | --usage | -!(-*)[?]*)
@@ -12,12 +12,12 @@ _luserdel()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ _comp_compgen_help
return
fi
- COMPREPLY=($(compgen -u -- "$cur"))
+ _comp_compgen -- -u
} &&
- complete -F _luserdel luserdel
+ complete -F _comp_cmd_luserdel luserdel
# ex: filetype=sh