Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 7c / 4ba751a4503ce1704eb452e2d4c44fe6d7023f
1 Return-Path: <kas@shutemov.name>\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 B96BC431FC3\r
6         for <notmuch@notmuchmail.org>; Mon, 28 Jan 2013 07:57:08 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         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 JLo54OGttyak for <notmuch@notmuchmail.org>;\r
16         Mon, 28 Jan 2013 07:57:08 -0800 (PST)\r
17 Received: from shutemov.name (shutemov.name [204.155.152.216])\r
18         by olra.theworths.org (Postfix) with ESMTP id 2114A431FAF\r
19         for <notmuch@notmuchmail.org>; Mon, 28 Jan 2013 07:57:08 -0800 (PST)\r
20 Received: by shutemov.name (Postfix, from userid 1000)\r
21         id 4C92B333DE; Mon, 28 Jan 2013 17:52:25 +0200 (EET)\r
22 From: "Kirill A. Shutemov" <kirill@shutemov.name>\r
23 To: Felipe Contreras <felipe.contreras@gmail.com>\r
24 Subject: [PATCH 5/5] Drop harmful reply buffer preparation\r
25 Date: Mon, 28 Jan 2013 17:52:20 +0200\r
26 Message-Id: <1359388340-27136-6-git-send-email-kirill@shutemov.name>\r
27 X-Mailer: git-send-email 1.7.10.4\r
28 In-Reply-To: <1359388340-27136-1-git-send-email-kirill@shutemov.name>\r
29 References: <1359388340-27136-1-git-send-email-kirill@shutemov.name>\r
30 Cc: notmuch@notmuchmail.org\r
31 X-BeenThere: notmuch@notmuchmail.org\r
32 X-Mailman-Version: 2.1.13\r
33 Precedence: list\r
34 List-Id: "Use and development of the notmuch mail system."\r
35         <notmuch.notmuchmail.org>\r
36 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
37         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
38 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
39 List-Post: <mailto:notmuch@notmuchmail.org>\r
40 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
41 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
43 X-List-Received-Date: Mon, 28 Jan 2013 15:57:09 -0000\r
44 \r
45 From: "Kirill A. Shutemov" <kirill@shutemov.name>\r
46 \r
47 Inserting empty lines at the end of reply buffer and switching to insert\r
48 mode are not what user want on reply. It's only annoying if you try to\r
49 comment on patch.\r
50 \r
51 If a user really wants this kind of preparation it should be implemented\r
52 as an user-specific hook.\r
53 \r
54 Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>\r
55 ---\r
56  notmuch-ruby.vim |    4 ----\r
57  1 file changed, 4 deletions(-)\r
58 \r
59 diff --git a/notmuch-ruby.vim b/notmuch-ruby.vim\r
60 index cda5df4..44d127f 100644\r
61 --- a/notmuch-ruby.vim\r
62 +++ b/notmuch-ruby.vim\r
63 @@ -144,7 +144,6 @@ ruby << EOF\r
64  EOF\r
65         call s:set_map(g:notmuch_rb_compose_maps)\r
66         autocmd BufUnload <buffer> call s:compose_unload()\r
67 -       startinsert!\r
68  endfunction\r
69  \r
70  function! s:show_info()\r
71 @@ -511,9 +510,6 @@ ruby << EOF\r
72                         part.convert.each_line do |l|\r
73                                 body_lines << "> %s" % l.chomp\r
74                         end\r
75 -                       body_lines << ""\r
76 -                       body_lines << ""\r
77 -                       body_lines << ""\r
78  \r
79                         reply.body = body_lines.join("\n")\r
80  \r
81 -- \r
82 1.7.10.4\r
83 \r