From 0b235781821d38e92f9e637d0ef23c8c1c771c73 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 11 May 2022 12:15:15 +0200 Subject: [PATCH] Apply mu4e marks automatically on quit --- config.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.org b/config.org index 9f96cc2..d76aa9c 100644 --- a/config.org +++ b/config.org @@ -60,6 +60,7 @@ - [[#mailing-list-pretty-names][Mailing list pretty names]] - [[#fix-attachment-icon-with-light-theme][Fix attachment icon with light theme]] - [[#bookmarks][Bookmarks]] + - [[#apply-marks-on-quit][Apply marks on quit]] * Misc @@ -801,3 +802,11 @@ Let's not display messages from mailing lists in main views, leave them to speci (:name "Orgmode mailing list new posts" :query "list:emacs-orgmode.gnu.org AND flag:unread" :key ?o) (:name "All messages with images" :query "mime:image/*" :key ?P))) #+end_src + +** Apply marks on quit + +I don't want confirm to apply marks everytime I quit the headers view. + +#+begin_src emacs-lisp :noweb-ref after-mu4e :tangle no +(setq mu4e-headers-leave-behavior 'apply) +#+end_src