grimoire

personal wiki
git clone git://git.pyratebeard.net/grimoire.git
Log | Files | Refs

commit d7d51765ae32a920e11a0916370d17094c7a29ff
parent cfded245505a9bd3dde4fbe63f498a275786e0d2
Author: pyratebeard <root@pyratebeard.net>
Date:   Thu, 29 Nov 2018 13:08:54 +0000

index format and threads sections added with references

Diffstat:
Mtechnology/communication/mutt.md | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/technology/communication/mutt.md b/technology/communication/mutt.md @@ -2,3 +2,31 @@ * limit new (unread) messages using `~U` +## index format +default index format is (taken from [muttrc man][]) +``` +"%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s" +``` + +current format is +``` +"%Z %-30.30L %M %s" +``` +_message status, sender, hidden msgs (in thread), subject_ + +## threads +collapse threads using `Esc-v` + +[rebind collapse-thread][] to '-' +``` +bind index - collapse-thread +``` + +configure threads to be collapsed when mailbox opened ([thread_ref][]) +``` +folder-hook . "push <collapse-all>\n" +``` + +[muttrc man]: https://linux.die.net/man/5/muttrc +[rebind collapse-thread]: https://heipei.net/2009/09/10/mutt-threading-like-a-pro/ +[thread_ref]: http://compgroups.net/comp.mail.mutt/collapsing-threads-by-default/2550437