aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-11-13 17:04:51 -0800
committerGravatar Tom Willemse2022-11-13 17:06:22 -0800
commit04be0ce1fe83cbd0d80fee3c96630e50723b338b (patch)
treea5ed10101e0ab03958331ddb294a418c8e289c95
parent0401e08e65e19aec4573894a5bf0dfd2fbb78b19 (diff)
downloademacs-config-04be0ce1fe83cbd0d80fee3c96630e50723b338b.tar.gz
emacs-config-04be0ce1fe83cbd0d80fee3c96630e50723b338b.zip
[oni-notmuch] Swap deleted and @me faces so deleted takes precedence
When I delete a message I don't want it to still be highlighted as a message for me. The fact that I marked it for deletion is more important than that it's addressed to me directly.
-rw-r--r--oni-notmuch.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/oni-notmuch.el b/oni-notmuch.el
index 62a695a..5bd49b5 100644
--- a/oni-notmuch.el
+++ b/oni-notmuch.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.1102.115002
+;; Version: 2022.1113.170616
;; Package-Requires: (notmuch ol-notmuch)
;; This program is free software; you can redistribute it and/or modify
@@ -38,9 +38,9 @@ in which to mark thread."
(notmuch-search-tag (notmuch-tag-change-list '("deleted") reverse) begin end))
(add-to-list 'notmuch-search-line-faces
- '("deleted" . (:foreground "#3f4242")))
-(add-to-list 'notmuch-search-line-faces
'("@me" . (:foreground "#90ca82")))
+(add-to-list 'notmuch-search-line-faces
+ '("deleted" . (:foreground "#3f4242")))
(define-key notmuch-search-mode-map (kbd "d") #'oni-notmuch-search-delete-thread)