mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 11:09:52 +00:00
Fix errors in process segment.
This commit is contained in:
parent
7ea698723f
commit
83bf2c509d
1 changed files with 4 additions and 2 deletions
|
@ -413,7 +413,9 @@ mouse-3: Toggle minor modes"
|
||||||
"The process info."
|
"The process info."
|
||||||
(if (doom-modeline--active)
|
(if (doom-modeline--active)
|
||||||
mode-line-process
|
mode-line-process
|
||||||
(propertize mode-line-process 'face 'mode-line-inactive)))
|
(propertize
|
||||||
|
(format-mode-line '("" mode-line-process))
|
||||||
|
'face 'mode-line-inactive)))
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
@ -437,7 +439,7 @@ mouse-1: Display minor modes menu"
|
||||||
'mouse-1 #'minions-minor-modes-menu))
|
'mouse-1 #'minions-minor-modes-menu))
|
||||||
" ")
|
" ")
|
||||||
(propertize
|
(propertize
|
||||||
(concat (format-mode-line `(:propertize ("" minor-mode-alist))) " ")
|
(concat (format-mode-line '("" minor-mode-alist)) " ")
|
||||||
'face (if active
|
'face (if active
|
||||||
'doom-modeline-buffer-minor-mode
|
'doom-modeline-buffer-minor-mode
|
||||||
'mode-line-inactive))))))
|
'mode-line-inactive))))))
|
||||||
|
|
Loading…
Reference in a new issue