X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=faq.mdwn;h=bb0efaa90c2b458ca5e6ec9ea1486e52d7da072a;hb=6af7f7dbf56bba07b8e3dcd567f51230c230b8d4;hp=f6d8a71e2a422b056c93dee688dc65fa49940246;hpb=ae680bcb8a529147833d3c81709375bc7ee13fc9;p=notmuch-wiki diff --git a/faq.mdwn b/faq.mdwn index f6d8a71..bb0efaa 100644 --- a/faq.mdwn +++ b/faq.mdwn @@ -19,3 +19,37 @@ with the same message (i.e. the files have identical Message-ID). A ## How do I delete messages See [[excluding]]. + +## How do I configure the citation line when replying in Emacs? + + (setq message-citation-line-format "On %a, %d %b %Y, %f wrote:") + (setq message-citation-line-function 'message-insert-formatted-citation-line) + +See help for `message-citation-line-format` for details. + +## How do I search for messages that have no tags? + +Unfortunately, there is no way to do this directly. + +However, it's possible to accomplish this using two searches in shell. First, +you need to query all tags in the database, and transform the result into a +query that matches messages that have none of those tags: + + $ notmuch search --output=tags \* | sed 's/^/not tag:/;2~1s/^/and /' + +Next, use that to query the messages: + + $ notmuch search $(notmuch search --output=tags \* | \ + sed 's/^/not tag:/;2~1s/^/and /') + +## How do I search for punctuation, specific special characters, or regexp? + +Please see the [[notmuch-search-terms manual +page|manpages/notmuch-search-terms-7]] first. + +The main thing to understand is that Xapian, and therefore Notmuch, searches are +closer to natural language searches than regular expression +searches. Punctuation is mostly ignored. + +The boolean prefix searches (see Boolean and Probabilistic Prefixes in the man +page), such as tag: or path: searches, need an exact match.