diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:57:51 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:57:51 +0000 |
commit | 7f51d2c772c42dd1db89d54f8faa003d4a682aa2 (patch) | |
tree | 292c6c962d93303423a48bb49e14b4fb50f6240e | |
parent | 54c901a4945548e17a7dc272d662f5c677f038b3 (diff) | |
download | zsh-7f51d2c772c42dd1db89d54f8faa003d4a682aa2.tar.gz zsh-7f51d2c772c42dd1db89d54f8faa003d4a682aa2.tar.xz zsh-7f51d2c772c42dd1db89d54f8faa003d4a682aa2.zip |
moved to Completion/Unix/Command/_mutt
-rw-r--r-- | Completion/User/_mutt | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/Completion/User/_mutt b/Completion/User/_mutt deleted file mode 100644 index 7898a0527..000000000 --- a/Completion/User/_mutt +++ /dev/null @@ -1,39 +0,0 @@ -#compdef mutt - -local curcontext="$curcontext" state line suf -typeset -A opt_args - -_arguments -C -s \ - '::recipient:->userhost' \ - '*-a[attach file using MIME]:file attachment:_files' \ - '*-b[specify a BCC recipient]:BCC recepient:->userhost' \ - '*-c[specify a CC recipient]:CC recipient:->userhost' \ - '-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]' && return 0 - -if [[ "$state" = userhost ]]; then - if compset -P '*@'; then - _description hosts expl 'remote host name' - _hosts "$expl[@]" -q -S, && return 0 - else - compset -S '@*' || suf='@' - _description users expl 'login name' - _users "$expl[@]" -q -S "$suf" && return 0 - fi -fi - -return 1 |