mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix error in input-method: (wrong-type-argument stringp nil).
This commit is contained in:
parent
5836f0603c
commit
e032bb92c3
1 changed files with 3 additions and 2 deletions
|
@ -288,7 +288,7 @@ active.")
|
|||
(defface doom-modeline-persp-name '((t (:inherit font-lock-comment-face :italic t)))
|
||||
"Face for the replace state tag in evil state indicator.")
|
||||
|
||||
(defface doom-modeline-persp-buffer-not-in-persp '((t (:inherit doom-modeline-persp-name :bold t)))
|
||||
(defface doom-modeline-persp-buffer-not-in-persp '((t (:inherit font-lock-doc-face :bold t)))
|
||||
"Face for the replace state tag in evil state indicator.")
|
||||
|
||||
|
||||
|
@ -1405,7 +1405,8 @@ See `mode-line-percent-position'.")
|
|||
(bound-and-true-p evil-input-method))
|
||||
(concat
|
||||
(nth 3 (assoc default-input-method input-method-alist))
|
||||
" ")))
|
||||
" "))
|
||||
(t ""))
|
||||
'face 'doom-modeline-buffer-major-mode)))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue