Changeset 5423:4e37699a7750
- Timestamp:
- 2008-06-25 22:58:21 (4 months ago)
- Author:
- Brendan Cully <brendan@…>
- Branch:
- HEAD
- Message:
-
Document difference between index and pager search. Closes #2886.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5421
|
r5423
|
|
| | 1 | 2008-06-25 22:43 -0700 Brendan Cully <brendan@kublai.com> (e2780a423d96) |
| | 2 | |
| | 3 | * commands.c, copy.c, crypt-gpgme.c, handler.c, mbox.c, pgp.c: Make |
| | 4 | mutt_copy_message distinguish between fatal and non-fatal errors. |
| | 5 | Non-fatal errors should prevent moving messages, since they indicate |
| | 6 | data loss. But mutt should still attempt to display them, since |
| | 7 | being able to see some attachments is better than nothing. Also stop |
| | 8 | printing out non-PGP material in application/pgp attachments. Closes |
| | 9 | #2545, #2912. |
| | 10 | |
| | 11 | 2008-06-24 23:12 -0700 Brendan Cully <brendan@kublai.com> (f5fe657f0633) |
| | 12 | |
| | 13 | * handler.c: Make multipart decoding a little more |
| | 14 | forgiving. First, ignore bad content-transfer-encoding in |
| | 15 | multipart sections. Second, if an attachment fails to decode, |
| | 16 | print a warning and continue instead of giving up on the entire |
| | 17 | message. |
| | 18 | |
| 1 | 19 | 1970-01-01 00:00 +0000 Brendan Cully <brendan@kublai.com> (a2e8f6fab8d3) |
| 2 | 20 | |
-
|
r5396
|
r5423
|
|
| 605 | 605 | <row><entry>T</entry><entry>toggle display of quoted text</entry></row> |
| 606 | 606 | <row><entry>?</entry><entry>show keybindings</entry></row> |
| 607 | | <row><entry>/</entry><entry>search for a regular expression (pattern)</entry></row> |
| 608 | | <row><entry>ESC /</entry><entry>search backwards for a regular expression</entry></row> |
| 609 | | <row><entry>\</entry><entry>toggle search pattern coloring</entry></row> |
| | 607 | <row><entry>/</entry><entry>regular expression search</entry></row> |
| | 608 | <row><entry>ESC /</entry><entry>backward regular expression search</entry></row> |
| | 609 | <row><entry>\</entry><entry>toggle highlighting of search matches</entry></row> |
| 610 | 610 | <row><entry>ˆ</entry><entry>jump to the top of the message</entry></row> |
| 611 | 611 | </tbody> |
| … |
… |
|
| 685 | 685 | display, for example by changing the color associated with color2 for |
| 686 | 686 | your xterm, then that color will be used instead of green. |
| | 687 | </para> |
| | 688 | |
| | 689 | <para> |
| | 690 | Note that the search commands in the pager take regular expressions, |
| | 691 | which are not quite the same as the more |
| | 692 | complex <link linkend="patterns">patterns</link> used by the search |
| | 693 | command in the index. This is because the pager only performs simple |
| | 694 | text search, whereas the index provides boolean filtering on several |
| | 695 | aspects of messages. |
| 687 | 696 | </para> |
| 688 | 697 | |