summaryrefslogtreecommitdiff
path: root/completions/rmlist
blob: dd31333c3f78e7727bd99168ed98cdf7453f7878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# mailman rmlist completion                                -*- shell-script -*-

_rmlist()
{
    local cur prev words cword
    _init_completion || return

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '--archives --help' -- "$cur" ) )
    else
        _xfunc list_lists _mailman_lists
    fi

} &&
complete -F _rmlist rmlist

# ex: ts=4 sw=4 et filetype=sh