mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
[Compatibility] % symbol not displayed in minor mode lighters.
This commit is contained in:
parent
40564fc281
commit
27b22faf56
1 changed files with 6 additions and 1 deletions
|
@ -444,7 +444,12 @@ mouse-1: Display minor modes menu"
|
|||
'mouse-1 #'minions-minor-modes-menu))
|
||||
" ")
|
||||
(propertize
|
||||
(concat (format-mode-line '("" minor-mode-alist)) " ")
|
||||
(concat
|
||||
(replace-regexp-in-string (regexp-quote "%")
|
||||
"%%%%"
|
||||
(format-mode-line '("" minor-mode-alist))
|
||||
t t)
|
||||
" ")
|
||||
'face (if active
|
||||
'doom-modeline-buffer-minor-mode
|
||||
'mode-line-inactive))))))
|
||||
|
|
Loading…
Reference in a new issue