Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / a1 / 724236c5fcd51bff1021da8319a3caa5b52f90
1 Return-Path: <bart@oxygen.jukie.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 56D30431FC2\r
6         for <notmuch@notmuchmail.org>; Fri, 27 Nov 2009 15:32:15 -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 27RUbMTk2vqB for <notmuch@notmuchmail.org>;\r
11         Fri, 27 Nov 2009 15:32:14 -0800 (PST)\r
12 Received: from tau.jukie.net (tau.jukie.net [216.239.93.128])\r
13         by olra.theworths.org (Postfix) with ESMTP id 01F74431FBC\r
14         for <notmuch@notmuchmail.org>; Fri, 27 Nov 2009 15:32:13 -0800 (PST)\r
15 Received: from oxygen.jukie.net (oxygen.jukie.net [10.10.10.8])\r
16         by tau.jukie.net (Postfix) with ESMTP id F3D97C008F5;\r
17         Fri, 27 Nov 2009 18:32:02 -0500 (EST)\r
18 Received: by oxygen.jukie.net (Postfix, from userid 1000)\r
19         id 3A4FE205E5065; Fri, 27 Nov 2009 18:31:23 -0500 (EST)\r
20 To: Carl Worth <cworth@cworth.org>, Tassilo Horn <tassilo@member.fsf.org>,\r
21         notmuch@notmuchmail.org\r
22 References: <87tywlji10.fsf@thinkpad.tsdh.de>\r
23         <87k4xdq7ys.fsf@yoom.home.cworth.org>\r
24 From: Bart Trojanowski <bart@jukie.net>\r
25 In-Reply-To: <87k4xdq7ys.fsf@yoom.home.cworth.org>\r
26 Message-Id: <20091127233123.3A4FE205E5065@oxygen.jukie.net>\r
27 Date: Fri, 27 Nov 2009 18:31:23 -0500 (EST)\r
28 Subject: Re: [notmuch] [PATCH] Return unpropertized strings for filename and\r
29         message-id\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.12\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Fri, 27 Nov 2009 23:32:15 -0000\r
43 \r
44 [[ First of all I am jazzed because this is the first email I am sending to\r
45 anyone other than myself from the vim interface to notmuch ]]\r
46 \r
47 Getting on wit the show...\r
48 \r
49 >      So to satisfy "git am", introductory and explanatory portions of\r
50 >      the email, ("Hi!" and "Here's my first patch"), have to be\r
51 >      relegated to past the "---" divider).\r
52\r
53 >      I actually don't love this about "git am", since I think those\r
54 >      introductory parts are essential to having cordial and friendly\r
55 >      exchanges on the mailing list, (rather than just dryly shooting\r
56 >      code back and forth). And it feels natural to have them first. One\r
57 >      thing that might be interesting is to teach "git am" about an\r
58 >      additional divider so that other text can came *before* the commit\r
59 >      message.\r
60\r
61 >      Alternately, one can put introductory text in one message, and the\r
62 >      dry commit-only stuff as a reply.\r
63 \r
64 You can actually put arbitrary text between the diffstat output and the first\r
65 diff --git line.  For example:\r
66 \r
67 --- 8< ---\r
68 >From e6628e78d9ce3f9383a4699df9063a648617b428 Mon Sep 17 00:00:00 2001\r
69 From: Bart Trojanowski <bart@jukie.net>\r
70 Date: Fri, 27 Nov 2009 18:02:05 -0500\r
71 Subject: [PATCH] this is the patch description\r
72 \r
73 Text that goes here will end up in the git commit.\r
74 ---\r
75  vim/README             |    3 ++-\r
76  1 files changed, 11 insertions(+), 12 deletions(-)\r
77 \r
78 Anything that goes here will be ignored, so you can typ\r
79 \r
80 diff --git a/vim/README b/vim/README\r
81 index 299c7f8..8cd3b1a 100644\r
82 --- a/vim/README\r
83 +++ b/vim/README\r
84 @@ -42,7 +42,8 @@ Buffer types:\r
85          You are presented with the search results when you run :NotMuch.\r
86  \r
87          Keybindings:\r
88 -            <Enter> - show the selected message\r
89 +            <Space> - show the selected thread colapsing unmatched items\r
90 +            <Enter> - show the entire selected thread\r
91              a       - archive message (remove inbox tag)\r
92              f       - filter the current search terms\r
93              o       - toggle search screen order\r
94 -- \r
95 1.6.4.4.2.gc2f148\r
96 \r
97 --- 8< ---\r
98 \r
99 \r
100 \r
101 -- \r
102 email sent from notmuch.vim plugin\r