[PATCH v2 06/14] cli/reply: make references header creation easier to follow
[notmuch-archives.git] / bd / 4a851d1a91bab0694a7cdf2f6781548d639bbb
1 Return-Path: <jrollins@finestructure.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 7AA19431FD6\r
6         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:21:00 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -2.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id I-bRZiVWCHsH for <notmuch@notmuchmail.org>;\r
16         Mon,  2 Apr 2012 01:21:00 -0700 (PDT)\r
17 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
18         [131.215.239.19])\r
19         by olra.theworths.org (Postfix) with ESMTP id 23CD6431FC2\r
20         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:21:00 -0700 (PDT)\r
21 Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by fire-doxen-postvirus (Postfix) with ESMTP id E07882E50C1E\r
23         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:20:59 -0700 (PDT)\r
24 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
25 Received: from finestructure.net (unknown [76.89.193.65])\r
26         (Authenticated sender: jrollins)\r
27         by fire-doxen-submit (Postfix) with ESMTP id 3D8352E509DC\r
28         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:20:58 -0700 (PDT)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 9E7EF19EA; Mon,  2 Apr 2012 01:20:56 -0700 (PDT)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: [PATCH 6/6] emacs: include tags from excluded messages in tag tab\r
34         completion\r
35 Date: Mon,  2 Apr 2012 01:20:53 -0700\r
36 Message-Id: <1333354853-25729-7-git-send-email-jrollins@finestructure.net>\r
37 X-Mailer: git-send-email 1.7.9.1\r
38 In-Reply-To: <1333354853-25729-6-git-send-email-jrollins@finestructure.net>\r
39 References: <1333354853-25729-1-git-send-email-jrollins@finestructure.net>\r
40         <1333354853-25729-2-git-send-email-jrollins@finestructure.net>\r
41         <1333354853-25729-3-git-send-email-jrollins@finestructure.net>\r
42         <1333354853-25729-4-git-send-email-jrollins@finestructure.net>\r
43         <1333354853-25729-5-git-send-email-jrollins@finestructure.net>\r
44         <1333354853-25729-6-git-send-email-jrollins@finestructure.net>\r
45 X-BeenThere: notmuch@notmuchmail.org\r
46 X-Mailman-Version: 2.1.13\r
47 Precedence: list\r
48 List-Id: "Use and development of the notmuch mail system."\r
49         <notmuch.notmuchmail.org>\r
50 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
52 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
53 List-Post: <mailto:notmuch@notmuchmail.org>\r
54 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
55 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
57 X-List-Received-Date: Mon, 02 Apr 2012 08:21:00 -0000\r
58 \r
59 The new message exclude functionality will hide tags that only exist\r
60 on excluded messages.  However, one might very well want to manually\r
61 modify excluded tags.  This makes sure tags from excluded messages are\r
62 always available in tab completion.\r
63 ---\r
64  emacs/notmuch.el |    2 +-\r
65  1 files changed, 1 insertions(+), 1 deletions(-)\r
66 \r
67 diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
68 index 19423ea..7cba496 100644\r
69 --- a/emacs/notmuch.el\r
70 +++ b/emacs/notmuch.el\r
71 @@ -91,7 +91,7 @@ For example:\r
72     (with-output-to-string\r
73       (with-current-buffer standard-output\r
74         (apply 'call-process notmuch-command nil t\r
75 -             nil "search" "--output=tags" search-terms)))\r
76 +             nil "search" "--output=tags" "--exclude=false" search-terms)))\r
77     "\n+" t))\r
78  \r
79  (defun notmuch-select-tag-with-completion (prompt &rest search-terms)\r
80 -- \r
81 1.7.9.1\r
82 \r