Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 01 / 3ad0b54652f3704b4783144ded802966aef323
1 Return-Path: <bremner@tesseract.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 A53F3431E64\r
6         for <notmuch@notmuchmail.org>; Sat, 10 Jan 2015 02:23:15 -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: 2.438\r
10 X-Spam-Level: **\r
11 X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
12         tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 lGjjFOzl7SYT for <notmuch@notmuchmail.org>;\r
16         Sat, 10 Jan 2015 02:23:12 -0800 (PST)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 793E9431E62\r
21         for <notmuch@notmuchmail.org>; Sat, 10 Jan 2015 02:23:12 -0800 (PST)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tesseract.cs.unb.ca>)\r
24         id 1Y9tCK-00034G-3s; Sat, 10 Jan 2015 06:23:12 -0400\r
25 Received: (nullmailer pid 26882 invoked by uid 1000); Sat, 10 Jan 2015\r
26         10:23:06 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH] completion: update list of commands in zsh completion.\r
30 Date: Sat, 10 Jan 2015 11:23:03 +0100\r
31 Message-Id: <1420885383-26840-1-git-send-email-david@tethera.net>\r
32 X-Mailer: git-send-email 2.1.4\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.13\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37         <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Sat, 10 Jan 2015 10:23:15 -0000\r
46 \r
47 This is actually generated by the script in\r
48 \r
49      id:1420289900-29717-2-git-send-email-david@tethera.net\r
50 \r
51 We may as well update the list of commands while we decide if it's\r
52 worth automating the process. Note that there is a bit more noise than\r
53 expected because it alphabetizes all of the commands with their own\r
54 man pages.\r
55 ---\r
56  completion/notmuch-completion.zsh | 23 ++++++++++++++---------\r
57  1 file changed, 14 insertions(+), 9 deletions(-)\r
58 \r
59 diff --git a/completion/notmuch-completion.zsh b/completion/notmuch-completion.zsh\r
60 index 8968562..208a550 100644\r
61 --- a/completion/notmuch-completion.zsh\r
62 +++ b/completion/notmuch-completion.zsh\r
63 @@ -7,16 +7,21 @@ _notmuch_commands()\r
64  {\r
65    local -a notmuch_commands\r
66    notmuch_commands=(\r
67 -    'setup:interactively set up notmuch for first use'\r
68 -    'new:find and import any new message to the database'\r
69 -    'search:search for messages matching the search terms, display matching threads as results'\r
70 -    'address:get addresses from messages matching the given search terms'\r
71 -    'reply:constructs a reply template for a set of messages'\r
72 -    'show:show all messages matching the search terms'\r
73 -    'tag:add or remove tags for all messages matching the search terms'\r
74 +    'help:display documentation for a subcommand'\r
75 +    'setup:interactively configure notmuch'\r
76 +\r
77 +    'address:output addresses from matching messages'\r
78 +    'compact:compact the notmuch database'\r
79 +    'config:access notmuch configuration file'\r
80 +    'count:count messages matching the given search terms'\r
81      'dump:creates a plain-text dump of the tags of each message'\r
82 -    'restore:restores the tags from the given file'\r
83 -    'help:show details on a command'\r
84 +    'insert:add a message to the maildir and notmuch database'\r
85 +    'new:incorporate new mail into the notmuch database'\r
86 +    'reply:constructs a reply template for a set of messages'\r
87 +    'restore:restores the tags from the given file (see notmuch dump)'\r
88 +    'search:search for messages matching the given search terms'\r
89 +    'show:show messages matching the given search terms'\r
90 +    'tag:add/remove tags for all messages matching the search terms'\r
91    )\r
92  \r
93    _describe -t command 'command' notmuch_commands\r
94 -- \r
95 2.1.4\r
96 \r