From 62ad257445f0cde456e59cbe53663f85b924e5ad Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 26 Feb 2014 15:36:15 +0000 Subject: [PATCH] Mark all messages as read in Mutt --- beaglebone.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/beaglebone.txt b/beaglebone.txt index 90fba1ac..54c766de 100644 --- a/beaglebone.txt +++ b/beaglebone.txt @@ -1464,8 +1464,11 @@ bind pager \Cn sidebar-next bind pager \Co sidebar-open # ctrl-b toggles sidebar visibility -macro index \Cb 'toggle sidebar_visible' -macro pager \Cb 'toggle sidebar_visible' +macro index \Cb 'toggle sidebar_visible' "toggle sidebar" +macro pager \Cb 'toggle sidebar_visible' "toggle sidebar" + +# esc-m Mark new messages as read +macro index m "T~N;WNT~O;WO\CT~T" "mark all messages read" #+END_SRC Save and exit. @@ -1518,6 +1521,7 @@ Some useful keys to know are: | $ | Delete all messages selected and check for new messages | | a | Add to the address book | | m | Send a new mail | +| ESC-m | Mark all messages as having been read | | S | Mark a message as spam | | H | Mark a message as ham | | CTRL-b | Toggle side bar on/off |