zsh-workers
 help / color / mirror / code / Atom feed
From: Clint Adams <schizo@debian.org>
To: zsh-workers@sunsite.auc.dk
Subject: PATCH: _mutt, _mailboxes
Date: Wed, 15 Sep 1999 17:30:39 -0400	[thread overview]
Message-ID: <19990915173039.A15772@dman.com> (raw)

This is my stab at completion for mutt.  I imagine that the
_mailboxes function would be useful for completing the -f arguments
of elm and pine, after some tweaking.

diff -cN --recursive Completion/User.old/_mailboxes Completion/User/_mailboxes
*** Completion/User.old/_mailboxes      Wed Dec 31 19:00:00 1969
--- Completion/User/_mailboxes  Wed Sep 15 17:21:44 1999
***************
*** 0 ****
--- 1,32 ----
+ #autoload
+ 
+ # This is needlessly mutt-biased and should be fixed.
+ 
+ local expl muttboxes mboxes dirboxes MHboxes maildirboxes muttrc="~/.muttrc" m
aildirectory="~/Mail"
+ 
+ test -f "$compconfig[muttrc_path]" && muttrc=$compconfig[muttrc_path]
+ test -f "$compconfig[maildirectory]" && maildirectory=$compconfig[maildirector
y]
+ 
+ if (( ! $+_mailbox_cache )) then
+ 
+ test ${muttrc} || test -f ${~muttrc} && muttboxes=( ${(@)$(grep mailboxes ${~m
uttrc})[2,-1]} )
+ 
+ mboxes=(${~maildirectory}/*(^/))
+ dirboxes=(${~maildirectory}/*(/))
+ 
+ for i in $dirboxes
+ do 
+ if test -d "${i}/cur"
+ then
+ maildirboxes=($maildirboxes $i)
+ else
+ MHboxes=($MHboxes $i)
+ fi
+ done
+ 
+ _mailbox_cache=(\! \< \> $muttboxes $mboxes $maildirboxes $MHboxes)
+ 
+ fi
+ 
+ _description expl 'mailbox specification'
+ compadd "$@" "$expl[@]" - "$_mailbox_cache[@]"
diff -cN --recursive Completion/User.old/_mutt Completion/User/_mutt
*** Completion/User.old/_mutt   Wed Dec 31 19:00:00 1969
--- Completion/User/_mutt       Wed Sep 15 17:21:44 1999
***************
*** 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


             reply	other threads:[~1999-09-15 21:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-09-15 21:30 Clint Adams [this message]
1999-09-18 23:27 ` Bart Schaefer
1999-09-20  4:48   ` Clint Adams
1999-09-16 13:11 Sven Wischnowsky
1999-09-16 15:38 ` Adam Spiers
1999-09-17  9:04 Sven Wischnowsky
1999-09-17 11:22 Sven Wischnowsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19990915173039.A15772@dman.com \
    --to=schizo@debian.org \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).