summaryrefslogtreecommitdiffstats
path: root/completions/list_owners
diff options
context:
space:
mode:
Diffstat (limited to 'completions/list_owners')
-rw-r--r--completions/list_owners16
1 files changed, 9 insertions, 7 deletions
diff --git a/completions/list_owners b/completions/list_owners
index 445be0b..6179176 100644
--- a/completions/list_owners
+++ b/completions/list_owners
@@ -1,18 +1,20 @@
# mailman list_owners completion -*- shell-script -*-
-_list_owners()
+_comp_cmd_list_owners()
{
- local cur prev words cword
- _init_completion || return
+ local cur prev words cword comp_args
+ _comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '--with-listnames --moderators --help' \
- -- "$cur"))
+ _comp_compgen -- -W '--with-listnames --moderators --help'
else
- _xfunc list_lists _mailman_lists
+ # Prefer `list_lists` in the same dir as command
+ local pathcmd
+ pathcmd=$(type -P "$1") && local PATH=${pathcmd%/*}:$PATH
+ _comp_compgen -x list_lists mailman_lists
fi
} &&
- complete -F _list_owners list_owners
+ complete -F _comp_cmd_list_owners list_owners
# ex: filetype=sh