Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / e5 / 466ce930a7502c4fceaec2fad4e979d2a7cfa4
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 3F7B1431FB6\r
6         for <notmuch@notmuchmail.org>; Sun, 18 Jan 2015 05:39:09 -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 IlsZc2NqktAP for <notmuch@notmuchmail.org>;\r
16         Sun, 18 Jan 2015 05:39:04 -0800 (PST)\r
17 X-Greylist: delayed 2234 seconds by postgrey-1.32 at olra;\r
18         Sun, 18 Jan 2015 05:39:03 PST\r
19 Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
20         [87.98.215.224])\r
21         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
22         (No client certificate requested)\r
23         by olra.theworths.org (Postfix) with ESMTPS id AA7F9431FAF\r
24         for <notmuch@notmuchmail.org>; Sun, 18 Jan 2015 05:39:03 -0800 (PST)\r
25 Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
26         4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
27         id 1YCpSi-0006b8-NT; Sun, 18 Jan 2015 13:00:16 +0000\r
28 Received: (nullmailer pid 29994 invoked by uid 1000); Sun, 18 Jan 2015\r
29         12:59:36 -0000\r
30 From: David Bremner <david@tethera.net>\r
31 To: Jani Nikula <jani@nikula.org>, David Bremner <david@tethera.net>,\r
32         notmuch@notmuchmail.org\r
33 Subject: [PATCH 2/3] doc: add material on stemming and wildcards\r
34 Date: Sun, 18 Jan 2015 13:59:30 +0100\r
35 Message-Id: <1421585971-29949-2-git-send-email-david@tethera.net>\r
36 X-Mailer: git-send-email 2.1.4\r
37 In-Reply-To: <1421585971-29949-1-git-send-email-david@tethera.net>\r
38 References: <87h9vojsa0.fsf@nikula.org>\r
39         <1421585971-29949-1-git-send-email-david@tethera.net>\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Sun, 18 Jan 2015 13:39:10 -0000\r
53 \r
54 This is lightly massaged from the searching page on the wiki.\r
55 ---\r
56  doc/man7/notmuch-search-terms.rst | 28 ++++++++++++++++++++++++++++\r
57  1 file changed, 28 insertions(+)\r
58 \r
59 diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst\r
60 index 52f6804..3b27053 100644\r
61 --- a/doc/man7/notmuch-search-terms.rst\r
62 +++ b/doc/man7/notmuch-search-terms.rst\r
63 @@ -129,6 +129,34 @@ operators, but will have to be protected from interpretation by the\r
64  shell, (such as by putting quotation marks around any parenthesized\r
65  expression).\r
66  \r
67 +Stemming\r
68 +--------\r
69 +\r
70 +**Stemming** in notmuch means is that these searches\r
71 +\r
72 +::\r
73 +\r
74 +        notmuch search detailed\r
75 +        notmuch search details\r
76 +        notmuch search detail\r
77 +\r
78 +will all return identical results, because Xapian first "reduces" the\r
79 +term to the common stem (here 'detail') and then performs the search.\r
80 +\r
81 +There are two ways to turn this off: a search for a capitalized word\r
82 +will be performed unstemmed, so that one can search for "John" and not\r
83 +get results for "Johnson"; phrase searches are also unstemmed (see\r
84 +below for details).  Stemming is currently only supported for\r
85 +English. Words in other languages will be performed unstemmed unless\r
86 +somebody teaches Xapian how to perform stemming for that language.\r
87 +\r
88 +Wildcards\r
89 +---------\r
90 +\r
91 +It is possible to use a trailing '\*' as a wildcard. A search for\r
92 +'wildc\*' will match 'wildcard', 'wildcat', etc.\r
93 +\r
94 +\r
95  Boolean and Probabilistic Prefixes\r
96  ----------------------------------\r
97  \r
98 -- \r
99 2.1.4\r
100 \r