File: _mutt

package info (click to toggle)
zsh-beta 4.3.6-dev-0%2B20080723-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 14,752 kB
  • ctags: 7,403
  • sloc: ansic: 90,889; sh: 5,568; makefile: 836; perl: 745; awk: 381; sed: 16
file content (23 lines) | stat: -rw-r--r-- 1,005 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#compdef mutt

_arguments -s \
  '::recipient:_email_addresses -n mutt' \
  '*-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' \
  '-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' \
  '-h[display help]' \
  '-H+[specify a draft file for message]:draft file:_files' \
  '-i+[specify file to include in message]:include file:_files' \
  '-m+[specify default mailbox type]:mailbox type:(mbox MMDF MH Maildir)' \
  '-n[bypass system configuration]' \
  '-p[resume postponed message]' \
  '-R[open in read-only mode]' \
  '-s+[specify a subject]:subject:' \
  '-v[display mutt version]' \
  '-x[emulate mailx compose]' \
  '-y[start listing mailboxes]' \
  '-z[start only if new messages]' \
  '-Z[open first mailbox with new mail]'