summaryrefslogtreecommitdiff
path: root/completions/rmlist
diff options
context:
space:
mode:
Diffstat (limited to 'completions/rmlist')
-rw-r--r--completions/rmlist23
1 files changed, 23 insertions, 0 deletions
diff --git a/completions/rmlist b/completions/rmlist
new file mode 100644
index 00000000..5f77092d
--- /dev/null
+++ b/completions/rmlist
@@ -0,0 +1,23 @@
+# mailman rmlist completion
+
+_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
+
+# 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