Align mode-line-evil-state-alist

This commit is contained in:
Trevor Richards 2022-12-30 21:03:29 -08:00
parent 2f9f5f37f5
commit 25c7846b8f
No known key found for this signature in database
GPG Key ID: 8546CF84A13DD5EF

View File

@ -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 . ("<N>" . font-lock-variable-name-face))
(insert . ("<I>" . font-lock-string-face))
(visual . ("<V>" . font-lock-keyword-face))
(replace . ("<R>" . font-lock-type-face))
(motion . ("<M>" . font-lock-constant-face))
'((normal . ("<N>" . font-lock-variable-name-face))
(insert . ("<I>" . font-lock-string-face))
(visual . ("<V>" . font-lock-keyword-face))
(replace . ("<R>" . font-lock-type-face))
(motion . ("<M>" . font-lock-constant-face))
(operator . ("<O>" . font-lock-function-name-face))
(emacs . ("<E>" . font-lock-builtin-face)))
(emacs . ("<E>" . 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\")."