Apply mu4e marks automatically on quit

This commit is contained in:
Antoine Martin 2022-05-11 12:15:15 +02:00
parent b6a3c912d5
commit 0b23578182

View file

@ -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