From: Brendan Cully Date: Thu, 26 Jun 2008 05:58:21 +0000 (-0700) Subject: Document difference between index and pager search. Closes #2886. X-Git-Tag: neomutt-20160307~1015 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b26ea724ae1f3f26ce5123b643f6b0ab6ce03b16;p=neomutt Document difference between index and pager search. Closes #2886. --- diff --git a/ChangeLog b/ChangeLog index fd648f240..16cd60a2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +2008-06-25 22:43 -0700 Brendan Cully (e2780a423d96) + + * commands.c, copy.c, crypt-gpgme.c, handler.c, mbox.c, pgp.c: Make + mutt_copy_message distinguish between fatal and non-fatal errors. + Non-fatal errors should prevent moving messages, since they indicate + data loss. But mutt should still attempt to display them, since + being able to see some attachments is better than nothing. Also stop + printing out non-PGP material in application/pgp attachments. Closes + #2545, #2912. + +2008-06-24 23:12 -0700 Brendan Cully (f5fe657f0633) + + * handler.c: Make multipart decoding a little more + forgiving. First, ignore bad content-transfer-encoding in + multipart sections. Second, if an attachment fails to decode, + print a warning and continue instead of giving up on the entire + message. + 1970-01-01 00:00 +0000 Brendan Cully (a2e8f6fab8d3) * smtp.c: Test that envelope from or from is set before attempting diff --git a/doc/manual.xml.head b/doc/manual.xml.head index d28fba292..44b5d8c46 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -604,9 +604,9 @@ featureful. Sskip beyond quoted text Ttoggle display of quoted text ?show keybindings -/search for a regular expression (pattern) -ESC /search backwards for a regular expression -\toggle search pattern coloring +/regular expression search +ESC /backward regular expression search +\toggle highlighting of search matches ˆjump to the top of the message @@ -686,6 +686,15 @@ display, for example by changing the color associated with color2 for your xterm, then that color will be used instead of green. + +Note that the search commands in the pager take regular expressions, +which are not quite the same as the more +complex patterns used by the search +command in the index. This is because the pager only performs simple +text search, whereas the index provides boolean filtering on several +aspects of messages. + +