summaryrefslogtreecommitdiff
path: root/completions/rmlist
blob: 0cc473a9bc180ae7d0e7eaee0893057be9b473af (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: filetype=sh