mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix #72: Keep the same buffer-info in active and inactive modeline.
This commit is contained in:
parent
df41de323d
commit
65ea32f20d
1 changed files with 9 additions and 4 deletions
|
@ -843,16 +843,21 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
||||||
(concat
|
(concat
|
||||||
;; major mode icon
|
;; major mode icon
|
||||||
(if (and doom-modeline-icon doom-modeline-major-mode-icon)
|
(if (and doom-modeline-icon doom-modeline-major-mode-icon)
|
||||||
(or doom-modeline--buffer-file-icon (doom-modeline-update-buffer-file-icon)))
|
(or doom-modeline--buffer-file-icon
|
||||||
|
(doom-modeline-update-buffer-file-icon)))
|
||||||
|
|
||||||
;; state icon
|
;; state icon
|
||||||
(if (doom-modeline--active)
|
(if (doom-modeline--active)
|
||||||
(or doom-modeline--buffer-file-state-icon (doom-modeline-update-buffer-file-state-icon)))
|
(or doom-modeline--buffer-file-state-icon
|
||||||
|
(doom-modeline-update-buffer-file-state-icon)))
|
||||||
|
|
||||||
;; buffer file name
|
;; buffer file name
|
||||||
(if (doom-modeline--active)
|
(if (doom-modeline--active)
|
||||||
(or doom-modeline--buffer-file-name (doom-modeline-update-buffer-file-name))
|
(or doom-modeline--buffer-file-name
|
||||||
"%b")))
|
(doom-modeline-update-buffer-file-name))
|
||||||
|
(propertize
|
||||||
|
(or doom-modeline--buffer-file-name "%b")
|
||||||
|
'face 'mode-line-inactive))))
|
||||||
|
|
||||||
(doom-modeline-def-segment buffer-info-simple
|
(doom-modeline-def-segment buffer-info-simple
|
||||||
"Display only the current buffer's name, but with fontification."
|
"Display only the current buffer's name, but with fontification."
|
||||||
|
|
Loading…
Reference in a new issue