summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-04-23 05:24:17 +0100
committerjao <jao@gnu.org>2021-04-23 05:24:17 +0100
commitda234d58f13dc8e2ee903336973958395b59c81e (patch)
treea5463e24a68179f019543a84fcd71e919a96108d /email.org
parent77c99d7ec409e001b09a0c65ddf322e971cbfa4e (diff)
downloadelibs-da234d58f13dc8e2ee903336973958395b59c81e.tar.gz
elibs-da234d58f13dc8e2ee903336973958395b59c81e.tar.bz2
little tidy-ups
Diffstat (limited to 'email.org')
-rw-r--r--email.org10
1 files changed, 6 insertions, 4 deletions
diff --git a/email.org b/email.org
index 57f360c..279c62e 100644
--- a/email.org
+++ b/email.org
@@ -502,7 +502,7 @@
:hook (notmuch-hello-refresh . jao--refresh-agenda)
:bind (:map notmuch-hello-mode-map
(("g" . jao-notmuch-refresh-hello)
- ("S" . consut-notmuch)
+ ("S" . consult-notmuch)
("k" . nil)
("SPC" . widget-button-press))))
@@ -577,12 +577,14 @@
(when (not (window-live-p notmuch-tree-message-window))
(notmuch-tree-show-message nil))))
+ (dolist (f '(notmuch-tree-match-tree-face
+ notmuch-tree-no-match-tree-face))
+ (set-face-attribute f :family "Source Code Pro" :foreground "grey60"))
+
(defun jao-notmuch--format-field (fun field &rest args)
(let ((rs (apply fun field args)))
(cond ((and (stringp field) (string= field "tree"))
- (propertize (replace-regexp-in-string "►" ">" rs) ;; "➤"
- 'face
- '(:family "Source Code Pro" :foreground "grey60")))
+ (replace-regexp-in-string "►" "" rs))
((not (stringp field)) (truncate-string-to-width rs 100))
(t rs))))