mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 11:01:13 +02:00
12347: 3 mutt options are repeatable
This commit is contained in:
parent
6585bea1fb
commit
36052b318b
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-07-22 Clint Adams <schizo@debian.org>
|
||||||
|
|
||||||
|
* 12347: Completion/User/_mutt: options -a, -b, and -c are
|
||||||
|
repeatable.
|
||||||
|
|
||||||
2000-07-21 Sven Wischnowsky <wischnow@zsh.org>
|
2000-07-21 Sven Wischnowsky <wischnow@zsh.org>
|
||||||
|
|
||||||
* 12337: Src/parse.c: fix parsing of `time' without a command
|
* 12337: Src/parse.c: fix parsing of `time' without a command
|
||||||
|
|
|
@ -5,9 +5,9 @@ typeset -A opt_args
|
||||||
|
|
||||||
_arguments -C \
|
_arguments -C \
|
||||||
'::recipient:->userhost' \
|
'::recipient:->userhost' \
|
||||||
'-a:MIME attachment:_files' \
|
'*-a:MIME attachment:_files' \
|
||||||
'-b:BCC recipient:->userhost' \
|
'*-b:BCC recipient:->userhost' \
|
||||||
'-c:CC recipient:->userhost' \
|
'*-c:CC recipient:->userhost' \
|
||||||
'-e:post-init configuration:' \
|
'-e:post-init configuration:' \
|
||||||
'-f+:mailbox: _mailboxes' \
|
'-f+:mailbox: _mailboxes' \
|
||||||
'-F+:init file:_files' \
|
'-F+:init file:_files' \
|
||||||
|
|
Loading…
Reference in a new issue