25 lines
493 B
Plaintext
Raw Normal View History

# mailman withlist completion
_withlist()
{
local cur prev words cword
_init_completion || return
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--lock --interactive \
--run --all --quiet --help' -- "$cur" ) )
else
_xfunc list_lists _mailman_lists
fi
} &&
complete -F _withlist withlist
# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh