zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-workers@sunsite.dk (Zsh hackers list)
Subject: PATCH: MH for Mailboxes (TM)
Date: Fri, 23 Mar 2001 17:22:19 +0000	[thread overview]
Message-ID: <Tc0a88d015278f21020@mailsweeper01.cambridgesiliconradio.com> (raw)

This makes _mailboxes a bit happier about MH mailboxes.  I don't know
whether to alter _mh_cache directly or change it at the point of use.  The
other change is to allow subfolders, which are already handled by
_multi_parts where _mh_cache is used.

It still doesn't handle the feature of MH (which I don't suppose anyone
actually uses) that @folder is relative to the last folder you were looking
at.  This is why I tacked the + directly on the front, rather than assuming
it's already present in the context --- it may in principle be an @.  But
in some ways it's more natural to forget about the + and assume it's
somewhere in the ignored prefix if it's needed.  MH itself is completely
consistent about requiring + or @, so far as I know, so either way would
probably work.

It's not wired up to _mh.  It's probably more than my job's worth to commit
this.

Index: Completion/User/_mailboxes
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/User/_mailboxes,v
retrieving revision 1.8
diff -u -r1.8 _mailboxes
--- Completion/User/_mailboxes	2000/11/09 13:27:53	1.8
+++ Completion/User/_mailboxes	2001/03/23 17:15:14
@@ -83,7 +83,8 @@
     if [[ -d "$i/cur" ]]; then
       _maildir_cache=( "${_maildir_cache[@]}" "$i" )
     elif j=( "$i"/<1-> ) && [[ -n "$j" ]]; then
-      _mh_cache=( "${_mh_cache[@]}" "$i" )
+      _mh_cache=( "${_mh_cache[@]}" "+${i#$~maildirectory/}" )
+      dirboxes=( $dirboxes "$i"/*(/) )
     else
       _mbox_cache=( "${_mbox_cache[@]}" "$i"/*(.) )
       dirboxes=( $dirboxes "$i"/*(/) )

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Unit 300, Science Park, Milton Road,
Cambridge, CB4 0XL, UK                          Tel: +44 (0)1223 392070


             reply	other threads:[~2001-03-23 19:29 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-03-23 17:22 Peter Stephenson [this message]
2001-03-24 18:06 ` Bart Schaefer
2001-03-24 23:55   ` Peter Stephenson
2001-03-26  8:34 Sven Wischnowsky
2001-03-28  6:30 ` Bart Schaefer
2001-03-28 10:55 Sven Wischnowsky
2001-03-28 15:53 ` Bart Schaefer
2001-03-29  8:36 Sven Wischnowsky
2001-03-29  8:52 ` Bart Schaefer

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=Tc0a88d015278f21020@mailsweeper01.cambridgesiliconradio.com \
    --to=pws@csr.com \
    --cc=zsh-workers@sunsite.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).