Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 01 / c653d3620fc74fa3fb95567d700dd2204049d7
1 Return-Path: <keithp@keithp.com>\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 83AFC431FC9\r
6         for <notmuch@notmuchmail.org>; Sat, 26 Dec 2009 16:34:38 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id 8N8JzzvJ4uF7 for <notmuch@notmuchmail.org>;\r
11         Sat, 26 Dec 2009 16:34:36 -0800 (PST)\r
12 Received: from keithp.com (home.keithp.com [63.227.221.253])\r
13         by olra.theworths.org (Postfix) with ESMTP id 5F3E8431FBC\r
14         for <notmuch@notmuchmail.org>; Sat, 26 Dec 2009 16:34:36 -0800 (PST)\r
15 Received: from localhost (localhost [127.0.0.1])\r
16         by keithp.com (Postfix) with ESMTP id CC8B5760142\r
17         for <notmuch@notmuchmail.org>; Sat, 26 Dec 2009 16:34:35 -0800 (PST)\r
18 X-Virus-Scanned: Debian amavisd-new at keithp.com\r
19 Received: from keithp.com ([127.0.0.1])\r
20         by localhost (keithp.com [127.0.0.1]) (amavisd-new, port 10024)\r
21         with LMTP id 8WJ+7aKDCj7b; Sat, 26 Dec 2009 16:34:30 -0800 (PST)\r
22 Received: by keithp.com (Postfix, from userid 1033)\r
23         id 23879760143; Sat, 26 Dec 2009 16:34:30 -0800 (PST)\r
24 Received: from koto.keithp.com (localhost [127.0.0.1])\r
25         by keithp.com (Postfix) with ESMTP id 1465C760116;\r
26         Sat, 26 Dec 2009 16:34:29 -0800 (PST)\r
27 Received: by koto.keithp.com (Postfix, from userid 1488)\r
28         id 0770A1381DD; Sat, 26 Dec 2009 16:34:20 -0800 (PST)\r
29 From: Keith Packard <keithp@keithp.com>\r
30 To: notmuch@notmuchmail.org\r
31 Date: Sat, 26 Dec 2009 16:34:16 -0800\r
32 Message-Id: <1261874058-13820-1-git-send-email-keithp@keithp.com>\r
33 X-Mailer: git-send-email 1.6.5.4\r
34 Subject: [notmuch] [PATCH 1/3] Add 'm' and ' ' bindings to notmuch-folder\r
35         view\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.12\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Sun, 27 Dec 2009 00:34:39 -0000\r
49 \r
50 This allows the user to compose new mail from the folder view, and\r
51 also to use <space> to show the current folder.\r
52 \r
53 Signed-off-by: Keith Packard <keithp@keithp.com>\r
54 ---\r
55  notmuch.el |    2 ++\r
56  1 files changed, 2 insertions(+), 0 deletions(-)\r
57 \r
58 diff --git a/notmuch.el b/notmuch.el\r
59 index 97914f2..3dbb64a 100644\r
60 --- a/notmuch.el\r
61 +++ b/notmuch.el\r
62 @@ -1378,12 +1378,14 @@ current search results AND that are tagged with the given tag."\r
63      (define-key map "?" 'notmuch-help)\r
64      (define-key map "x" 'kill-this-buffer)\r
65      (define-key map "q" 'kill-this-buffer)\r
66 +    (define-key map "m" 'message-mail)\r
67      (define-key map ">" 'notmuch-folder-last)\r
68      (define-key map "<" 'notmuch-folder-first)\r
69      (define-key map "=" 'notmuch-folder)\r
70      (define-key map "s" 'notmuch-search)\r
71      (define-key map [mouse-1] 'notmuch-folder-show-search)\r
72      (define-key map (kbd "RET") 'notmuch-folder-show-search)\r
73 +    (define-key map " " 'notmuch-folder-show-search)\r
74      (define-key map "p" 'notmuch-folder-previous)\r
75      (define-key map "n" 'notmuch-folder-next)\r
76      map)\r
77 -- \r
78 1.6.5.4\r
79 \r