diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-15 22:44:07 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-15 22:44:07 +0000 |
commit | 5de49e6fe89ed6808d4e4fa78beca9e97f168651 (patch) | |
tree | 6d5052ab63b45ce438d04be10ab1e8da32a845ee /Completion/User/_mutt | |
parent | 1595df61e6dffabda3b602344a12bf0792189ed4 (diff) | |
download | zsh-5de49e6fe89ed6808d4e4fa78beca9e97f168651.tar.gz zsh-5de49e6fe89ed6808d4e4fa78beca9e97f168651.tar.xz zsh-5de49e6fe89ed6808d4e4fa78beca9e97f168651.zip |
Initial revision
Diffstat (limited to 'Completion/User/_mutt')
-rw-r--r-- | Completion/User/_mutt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Completion/User/_mutt b/Completion/User/_mutt new file mode 100644 index 000000000..9155df832 --- /dev/null +++ b/Completion/User/_mutt @@ -0,0 +1,39 @@ +#compdef mutt + +local state line muttrc="~/.muttrc" ret=1 + + _arguments \ + '::recipient:->userhost' \ + '-a:MIME attachment:_files' \ + '-b:BCC recipient:->userhost' \ + '-c:CC recipient:->userhost' \ + '-e:post-init configuration:' \ + '-f+:mailbox:_mailboxes' \ + '-F+:init file:_files' \ + '-h+:help' \ + '-H+:draft file:_files' \ + '-i:include file:_files' \ + '-m+:default mailbox type:(mbox MMDF MH Maildir)' \ + '-n+:bypass system configuration:' \ + '-p+:resume postponed message:' \ + '-R+:open in read-only mode:' \ + '-s+:subject:' \ + '-v+:version:' \ + '-x+:emulate mailx compose:' \ + '-y+:start listing mailboxes:' \ + '-z+:start only if new messages:' \ + '-Z+:open first mailbox with new mail:' && ret=0 + +if [[ "$state" = userhost ]]; then + if compset -P '*@'; then + _description expl 'remote host name' + _hosts "$expl[@]" -q -S, + return + else + _description expl 'login name' + _users "$expl[@]" -q -S@ && ret=0 + fi + fi + +return ret +fi |