From ce0006721a9be735b30fb24a24196c26b2076e44 Mon Sep 17 00:00:00 2001 From: Oliver Dunkl Date: Thu, 2 Oct 2014 06:31:10 +0200 Subject: [PATCH 1/3] Add different face attribute for the mode-line There is an additional face attribute for the mode-line. --- mu4e/mu4e-headers.el | 2 +- mu4e/mu4e-vars.el | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index 4b859fd8..2d978e1e 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -932,7 +932,7 @@ the query history stack." mode-name "mu4e-headers" mu4e~headers-last-query expr global-mode-string (propertize mu4e~headers-last-query - 'face 'mu4e-title-face))) + 'face 'mu4e-modline-face))) (switch-to-buffer buf) (mu4e~proc-find expr diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el index ea4c9048..cf6bca3a 100644 --- a/mu4e/mu4e-vars.el +++ b/mu4e/mu4e-vars.el @@ -471,6 +471,11 @@ I.e. a message with the draft flag set." "Face for a header title in the headers view." :group 'mu4e-faces) +(defface mu4e-modline-face + '((t :inherit font-lock-string-face :bold t)) + "Face for the query view in the mode-line." + :group 'mu4e-faces) + (defface mu4e-footer-face '((t :inherit font-lock-comment-face)) "Face for message footers (signatures)." From ad48860101d092094a1cefd4c7d0ffd46d4cea5b Mon Sep 17 00:00:00 2001 From: Oliver Dunkl Date: Sun, 12 Oct 2014 10:38:38 +0200 Subject: [PATCH 2/3] Update mu4e-headers.el --- mu4e/mu4e-headers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index 2d978e1e..5575cafb 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -932,7 +932,7 @@ the query history stack." mode-name "mu4e-headers" mu4e~headers-last-query expr global-mode-string (propertize mu4e~headers-last-query - 'face 'mu4e-modline-face))) + 'face 'mu4e-modeline-face))) (switch-to-buffer buf) (mu4e~proc-find expr From 4964fc721d3facde72da40e46726bff9702d5de7 Mon Sep 17 00:00:00 2001 From: Oliver Dunkl Date: Sun, 12 Oct 2014 10:39:07 +0200 Subject: [PATCH 3/3] Update mu4e-vars.el --- mu4e/mu4e-vars.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el index cf6bca3a..50a6c3e9 100644 --- a/mu4e/mu4e-vars.el +++ b/mu4e/mu4e-vars.el @@ -471,7 +471,7 @@ I.e. a message with the draft flag set." "Face for a header title in the headers view." :group 'mu4e-faces) -(defface mu4e-modline-face +(defface mu4e-modeline-face '((t :inherit font-lock-string-face :bold t)) "Face for the query view in the mode-line." :group 'mu4e-faces)