[PATCH v3 06/10] cli: Introduce "notmuch address" command
[notmuch-archives.git] / aa / 84a47351771a5eaea8927d0710942d66442297
1 Return-Path: <kanru@kanru.info>\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 21F0B40B970\r
6         for <notmuch@notmuchmail.org>; Mon, 26 Jul 2010 19:35:34 -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: 1.801\r
10 X-Spam-Level: *\r
11 X-Spam-Status: No, score=1.801 tagged_above=-999 required=5\r
12         tests=[BAYES_50=0.8, FSL_HELO_NON_FQDN_1=0.001, HELO_NO_DOMAIN=1]\r
13         autolearn=no\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id hEVlvXkqYowi for <notmuch@notmuchmail.org>;\r
17         Mon, 26 Jul 2010 19:35:23 -0700 (PDT)\r
18 X-Greylist: delayed 2773 seconds by postgrey-1.32 at olra;\r
19         Mon, 26 Jul 2010 19:35:23 PDT\r
20 Received: from cp20 (cp20.secserverpros.com [67.220.217.187])\r
21         by olra.theworths.org (Postfix) with ESMTP id 1105F4196F2\r
22         for <notmuch@notmuchmail.org>; Mon, 26 Jul 2010 19:35:23 -0700 (PDT)\r
23 Received: from 61-30-10-70.static.tfn.net.tw ([61.30.10.70]\r
24         helo=anar.kanru.info) by cp20 with esmtpsa (TLSv1:AES256-SHA:256)\r
25         (Exim 4.69) (envelope-from <kanru@kanru.info>) id 1OdZIQ-00033C-Bh\r
26         for notmuch@notmuchmail.org; Tue, 27 Jul 2010 01:49:31 +0000\r
27 Received: from kanru by anar.kanru.info with local (Exim 4.72)\r
28         (envelope-from <kanru@kanru.info>)\r
29         id 1OdZIG-0002Ms-Gg; Tue, 27 Jul 2010 09:49:20 +0800\r
30 From: Kan-Ru Chen <kanru@kanru.info>\r
31 To: notmuch@notmuchmail.org\r
32 Subject: [PATCH 2/2] emacs: notmuch-hello: Add "n" and "p" to mod map\r
33 Date: Tue, 27 Jul 2010 09:48:45 +0800\r
34 Message-Id: <1280195325-9066-3-git-send-email-kanru@kanru.info>\r
35 X-Mailer: git-send-email 1.7.1\r
36 In-Reply-To: <1280195325-9066-1-git-send-email-kanru@kanru.info>\r
37 References: <1280195325-9066-1-git-send-email-kanru@kanru.info>\r
38 X-AntiAbuse: This header was added to track abuse,\r
39         please include it with any abuse report\r
40 X-AntiAbuse: Primary Hostname - cp20\r
41 X-AntiAbuse: Original Domain - notmuchmail.org\r
42 X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]\r
43 X-AntiAbuse: Sender Address Domain - kanru.info\r
44 X-Source: \r
45 X-Source-Args: \r
46 X-Source-Dir: \r
47 X-BeenThere: notmuch@notmuchmail.org\r
48 X-Mailman-Version: 2.1.13\r
49 Precedence: list\r
50 List-Id: "Use and development of the notmuch mail system."\r
51         <notmuch.notmuchmail.org>\r
52 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
54 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
55 List-Post: <mailto:notmuch@notmuchmail.org>\r
56 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
57 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
58         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
59 X-List-Received-Date: Tue, 27 Jul 2010 02:35:34 -0000\r
60 \r
61 Bind "n" to widget-forward and "p" to widget-backward to unify the\r
62 interface since other notmuch major mode also accept "n" and "p" to\r
63 navigation.\r
64 ---\r
65  emacs/notmuch-hello.el |    2 ++\r
66  1 files changed, 2 insertions(+), 0 deletions(-)\r
67 \r
68 diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el\r
69 index 6ef03bb..7def241 100644\r
70 --- a/emacs/notmuch-hello.el\r
71 +++ b/emacs/notmuch-hello.el\r
72 @@ -294,6 +294,8 @@ should be. Returns a cons cell `(tags-per-line width)'."\r
73      (define-key map "=" 'notmuch-hello-update)\r
74      (define-key map "G" 'notmuch-hello-poll-and-update)\r
75      (define-key map (kbd "<C-tab>") 'widget-backward)\r
76 +    (define-key map "n" 'widget-forward)\r
77 +    (define-key map "p" 'widget-backward)\r
78      (define-key map "m" 'notmuch-mua-mail)\r
79      (define-key map "s" 'notmuch-hello-goto-search)\r
80      map)\r
81 -- \r
82 1.7.1\r
83 \r