diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-15 12:01:46 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-11-15 12:01:46 +0000 |
commit | 35b2633ad941966f5fca07b625a594a5b68c0fdb (patch) | |
tree | b54740d014e594ba5d81931cdcdb3387bcf9dfca /Completion/User/_mutt | |
parent | bb98460a01ce1f6c1e71f7e401f782c81b71486b (diff) | |
download | zsh-35b2633ad941966f5fca07b625a594a5b68c0fdb.tar.gz zsh-35b2633ad941966f5fca07b625a594a5b68c0fdb.tar.xz zsh-35b2633ad941966f5fca07b625a594a5b68c0fdb.zip |
manual/8639
Diffstat (limited to 'Completion/User/_mutt')
-rw-r--r-- | Completion/User/_mutt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_mutt b/Completion/User/_mutt index 16b1b0c6d..98c59b2e0 100644 --- a/Completion/User/_mutt +++ b/Completion/User/_mutt @@ -1,8 +1,8 @@ #compdef mutt -local context state line muttrc="~/.muttrc" ret=1 +local curcontext="$curcontext" state line muttrc="~/.muttrc" ret=1 - _arguments \ + _arguments -C \ '::recipient:->userhost' \ '-a:MIME attachment:_files' \ '-b:BCC recipient:->userhost' \ @@ -25,7 +25,7 @@ local context state line muttrc="~/.muttrc" ret=1 '-Z+:open first mailbox with new mail:' && ret=0 if [[ "$state" = userhost ]]; then - _tags "$context" hosts || return 1 + _tags hosts || return 1 if compset -P '*@'; then _description expl 'remote host name' |