summaryrefslogtreecommitdiff
path: root/completions/rmlist
blob: d096352cd6cbb45b088e334d0ae9cc6203689c4c (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