X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=d66894ae38375821509025f8c22e0a5fb01a8c0e;hb=361b9d4bd9042629e3729b43d18a862ddc716242;hp=686e203702d05ec018afc0f8e9bcff843f218fba;hpb=fc37771a712db1fbd42bc07fd18ea92a189b5ba2;p=notmuch diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 686e2037..d66894ae 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -194,7 +194,8 @@ any given message." (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t) (let ((inhibit-read-only t)) (replace-match (concat "(" - (mapconcat 'identity tags " ") + (propertize (mapconcat 'identity tags " ") + 'face 'notmuch-tag-face) ")")))))) (defun notmuch-show-insert-headerline (headers date tags depth) @@ -206,7 +207,8 @@ message at DEPTH in the current thread." " (" date ") (" - (mapconcat 'identity tags " ") + (propertize (mapconcat 'identity tags " ") + 'face 'notmuch-tag-face) ")\n") (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))