mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 19:19:53 +00:00
Optimize: get buffer info.
This commit is contained in:
parent
8cf0646dc0
commit
d0c23229ec
1 changed files with 2 additions and 4 deletions
|
@ -609,7 +609,7 @@ buffer where knowing the current project directory is important."
|
|||
'face face))))
|
||||
|
||||
;;
|
||||
(defvar-local doom-modeline-buffer-file-name nil)
|
||||
(defvar-local doom-modeline-buffer-file-name "%b")
|
||||
(defun doom-modeline-update-buffer-file-name (&rest _)
|
||||
"Propertized variable `buffer-file-name' based on `doom-modeline-buffer-file-name-style'."
|
||||
(setq doom-modeline-buffer-file-name
|
||||
|
@ -657,9 +657,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
|||
:face 'doom-modeline-warning
|
||||
:v-adjust -0.05)
|
||||
" ")))
|
||||
(if (and doom-modeline-buffer-file-name
|
||||
buffer-file-name
|
||||
(file-exists-p buffer-file-name))
|
||||
(if buffer-file-name
|
||||
doom-modeline-buffer-file-name
|
||||
"%b")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue