Merge pull request #22 from Dickby/master

add missing face for evil-replace-state
This commit is contained in:
Vincent Zhang 2018-08-23 10:35:10 +08:00 committed by GitHub
commit 52621f0513
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,6 +210,8 @@ active.")
(defface doom-modeline-evil-visual-state'((t (:inherit doom-modeline-buffer-file)))
"Face for the visual state tag in evil state indicator.")
(defface doom-modeline-evil-replace-state'((t (:inherit doom-modeline-error)))
"Face for the replace state tag in evil state indicator.")
;;
;; Modeline library
@ -1030,7 +1032,8 @@ See `mode-line-percent-position'.")
((eq tag evil-insert-state-tag) 'doom-modeline-evil-insert-state)
((eq tag evil-motion-state-tag) 'doom-modeline-evil-motion-state)
((eq tag evil-visual-state-tag) 'doom-modeline-evil-visual-state)
((eq tag evil-operator-state-tag) 'doom-modeline-evil-operator-state)))))))
((eq tag evil-operator-state-tag) 'doom-modeline-evil-operator-state)
((eq tag evil-replace-state-tag) 'doom-modeline-evil-replace-state)))))))
;;