From 25c7846b8f31386412884cded43b1f12d0835d17 Mon Sep 17 00:00:00 2001 From: Trevor Richards Date: Fri, 30 Dec 2022 21:03:29 -0800 Subject: [PATCH] Align mode-line-evil-state-alist --- mood-line.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mood-line.el b/mood-line.el index 0c5ff47..236ce04 100644 --- a/mood-line.el +++ b/mood-line.el @@ -247,13 +247,13 @@ found to be missing in `mood-line-glyph-alist'." :value-type (character :tag "Character to use"))) (defcustom mood-line-evil-state-alist - '((normal . ("" . font-lock-variable-name-face)) - (insert . ("" . font-lock-string-face)) - (visual . ("" . font-lock-keyword-face)) - (replace . ("" . font-lock-type-face)) - (motion . ("" . font-lock-constant-face)) + '((normal . ("" . font-lock-variable-name-face)) + (insert . ("" . font-lock-string-face)) + (visual . ("" . font-lock-keyword-face)) + (replace . ("" . font-lock-type-face)) + (motion . ("" . font-lock-constant-face)) (operator . ("" . font-lock-function-name-face)) - (emacs . ("" . font-lock-builtin-face))) + (emacs . ("" . font-lock-builtin-face))) "Set the string and corresponding face for any `evil-mode' state. The `Face' may be either a face symbol or a property list of key-value pairs e.g. (:foreground \"red\")."