Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 0e / 55be633e37f2cea35a89824ee0dbc9e956533c
1 Return-Path: <bremner@pivot.cs.unb.ca>\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 37408431FBF\r
6         for <notmuch@notmuchmail.org>; Sat, 19 Dec 2009 06:55:41 -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 69E+0jzb3pdJ for <notmuch@notmuchmail.org>;\r
11         Sat, 19 Dec 2009 06:55:40 -0800 (PST)\r
12 Received: from pivot.cs.unb.ca (pivot.cs.unb.ca [131.202.240.57])\r
13         by olra.theworths.org (Postfix) with ESMTP id 9CD31431FAE\r
14         for <notmuch@notmuchmail.org>; Sat, 19 Dec 2009 06:55:40 -0800 (PST)\r
15 Received: from\r
16         fctnnbsc30w-142167182194.pppoe-dynamic.high-speed.nb.bellaliant.net\r
17         ([142.167.182.194] helo=localhost)\r
18         by pivot.cs.unb.ca with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32)\r
19         (Exim 4.69) (envelope-from <bremner@pivot.cs.unb.ca>)\r
20         id 1NM0iZ-0003aD-P7\r
21         for notmuch@notmuchmail.org; Sat, 19 Dec 2009 10:55:40 -0400\r
22 Received: from bremner by localhost with local (Exim 4.69)\r
23         (envelope-from <bremner@pivot.cs.unb.ca>) id 1NM0iU-0006eT-Bg\r
24         for notmuch@notmuchmail.org; Sat, 19 Dec 2009 10:55:34 -0400\r
25 From: david@tethera.net\r
26 To: notmuch@notmuchmail.org\r
27 Date: Sat, 19 Dec 2009 10:55:21 -0400\r
28 Message-Id: <1261234524-25522-1-git-send-email-david@tethera.net>\r
29 X-Mailer: git-send-email 1.6.5.3\r
30 In-Reply-To: <87iqc4yyo8.fsf@yoom.home.cworth.org>\r
31 References: <87iqc4yyo8.fsf@yoom.home.cworth.org>\r
32 X-Sender-Verified: bremner@pivot.cs.unb.ca\r
33 Subject: [notmuch] Prototype of --show option to control what is shown.\r
34 X-BeenThere: notmuch@notmuchmail.org\r
35 X-Mailman-Version: 2.1.12\r
36 Precedence: list\r
37 List-Id: "Use and development of the notmuch mail system."\r
38         <notmuch.notmuchmail.org>\r
39 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
40         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
41 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
42 List-Post: <mailto:notmuch@notmuchmail.org>\r
43 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
44 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
46 X-List-Received-Date: Sat, 19 Dec 2009 14:55:41 -0000\r
47 \r
48 Here is a set of 3 patches to implement (some) output control.  \r
49 \r
50 [PATCH 1/3] rename option to select output format to --format from --output.\r
51 [PATCH 2/3] notmuch-show.c: make calls to format functions conditional\r
52 \r
53 The first two are essentially suggestions for Scott.  In particular the first \r
54 is not needed at all for this little experiment.\r
55 \r
56 [PATCH 3/3] notmuch-show.c: prototype tabular output format, with output control\r
57 \r
58 The third implements a new "tabular" output format, and shows how it\r
59 might be conditionally controlled.  At the moment the only\r
60 possibilities to output are message-id, match flag, and filename.\r
61 This is mainly a matter of laziness.  I didn't want to go too crazy\r
62 before Scott's reached some final(ish) version.\r
63 \r
64 \r