Remove unread tag when deleting email
This commit is contained in:
parent
5323229853
commit
53700a9793
|
@ -8,7 +8,7 @@
|
|||
notmuch-search-oldest-first nil
|
||||
notmuch-show-logo nil
|
||||
notmuch-hello-thousands-separator ","
|
||||
notmuch-archive-tags '("-inbox" "+archive")
|
||||
notmuch-archive-tags '("+archive" "-inbox")
|
||||
notmuch-message-headers-visible nil
|
||||
notmuch-multipart/alternative-discouraged '("text/plain" "multipart/related")
|
||||
notmuch-show-all-multipart/alternative-parts nil
|
||||
|
@ -28,6 +28,11 @@
|
|||
(:name "sent" :query "tag:sent" :key "t")
|
||||
(:name "drafts" :query "tag:draft" :key "d")
|
||||
(:name "all mail" :query "*" :key "a"))
|
||||
notmuch-tagging-keys '(("a" notmuch-archive-tags "Archive")
|
||||
("u" notmuch-show-mark-read-tags "Mark read")
|
||||
("f" ("+flagged") "Flag")
|
||||
("s" ("+spam" "-inbox") "Mark as spam")
|
||||
("d" ("+deleted" "-inbox" "-unread") "Delete"))
|
||||
notmuch-indicator-args '((:terms "tag:unread AND tag:inbox" :label " "))
|
||||
notmuch-indicator-force-refresh-commands '(notmuch-refresh-this-buffer
|
||||
notmuch-refresh-all-buffers
|
||||
|
|
Loading…
Reference in a new issue