mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
emacs: Tags should be shown with `notmuch-tag-face'.
Use the same face for tags in `notmuch-show' mode as that used in `notmuch-search' mode.
This commit is contained in:
parent
17b09af228
commit
0109f67e38
1 changed files with 4 additions and 2 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue