about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2023-11-14 21:19:30 +0100
committerOliver Kiddle <opk@zsh.org>2023-11-14 21:19:30 +0100
commit5c7a97ff7d8f80a2ac823c47aaca26738e16f960 (patch)
tree827cf7541cea214053f31fd99c32dedc1eb89a65 /Completion
parent424746982b47c4a202fe7e4ff9e401a6cd4c222d (diff)
downloadzsh-5c7a97ff7d8f80a2ac823c47aaca26738e16f960.tar.gz
zsh-5c7a97ff7d8f80a2ac823c47aaca26738e16f960.tar.xz
zsh-5c7a97ff7d8f80a2ac823c47aaca26738e16f960.zip
unposted (cf. 52167): mutt's -a takes a list of files terminated by --
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_mutt7
1 files changed, 4 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_mutt b/Completion/Unix/Command/_mutt
index 9686ce6f1..82a6e5fa9 100644
--- a/Completion/Unix/Command/_mutt
+++ b/Completion/Unix/Command/_mutt
@@ -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' \