mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-05-18 21:51:02 +02:00
unposted (cf. 52167): mutt's -a takes a list of files terminated by --
This commit is contained in:
parent
424746982b
commit
5c7a97ff7d
2 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
2023-11-14 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* unposted (cf. 52167): Completion/Unix/Command/_mutt:
|
||||
mutt's -a takes a list of files terminated by --
|
||||
|
||||
* 52301: Completion/Unix/Command/_gem, Completion/Unix/Command/_ri,
|
||||
Completion/Unix/Command/_ruby: update options in completions for
|
||||
ruby 3.2, gem 3.4.10 and ri 6.5
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
#compdef mutt neomutt
|
||||
|
||||
_arguments -s -S \
|
||||
# should pass -S but that doesn't work with -- ending -a
|
||||
_arguments -s \
|
||||
'::recipient:_email_addresses -n mutt' \
|
||||
'(- :)-A[expand given alias]:alias:_email_addresses -n mutt' \
|
||||
'*-a[attach file using MIME]::file attachment:_files' \
|
||||
'*-a[attach file using MIME]:*--:file attachment:_files' \
|
||||
'*-b[specify a BCC recipient]:BCC recipient:_email_addresses -n mutt' \
|
||||
'*-c[specify a CC recipient]:CC recipient:_email_addresses -n mutt' \
|
||||
'(- :)-D[print the value of all variables]' \
|
||||
'(-x)-E[edit the draft (-H) or include (-i) file]' \
|
||||
'-d+[log debugging output to ~/.muttdebug0]:level:(1 2 3 4 5)' \
|
||||
'-d+[log debugging output to ~/.muttdebug0]:level:(-5 -4 -3 -2 -1 0 1 2 3 4 5)' \
|
||||
'-e+[specify a post-init configuration command]:post-init configuration' \
|
||||
'-f+[specify mailbox to load]:mailbox: _mailboxes' \
|
||||
'-F+[specify an init file]:init file:_files' \
|
||||
|
|
Loading…
Reference in a new issue