diff options
Diffstat (limited to 'completions/inject')
-rw-r--r-- | completions/inject | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/inject b/completions/inject index da2d9a9e..20ea9b7f 100644 --- a/completions/inject +++ b/completions/inject @@ -8,11 +8,11 @@ _inject() case $prev in -l|--listname) _xfunc list_lists _mailman_lists - return 0 + return ;; esac - $split && return 0 + $split && return if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '--listname --queue --help' -- "$cur" ) ) @@ -23,4 +23,4 @@ _inject() } && complete -F _inject inject -# ex: ts=4 sw=4 et filetype=sh +# ex: filetype=sh |