mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix #86: Unchanged Org file is displayed as modified.
Remove advices of set-buffer-modified-p, since it's called in org-unmodified.
This commit is contained in:
parent
9df1f758b2
commit
cb01400f94
1 changed files with 2 additions and 2 deletions
|
@ -829,7 +829,7 @@ Uses `all-the-icons-material' to fetch the icon."
|
|||
(advice-add #'undo-tree-redo :after #'doom-modeline-update-buffer-file-state-icon)
|
||||
(advice-add #'narrow-to-region :after #'doom-modeline-update-buffer-file-state-icon)
|
||||
(advice-add #'widen :after #'doom-modeline-update-buffer-file-state-icon)
|
||||
(advice-add #'set-buffer-modified-p :after #'doom-modeline-update-buffer-file-state-icon)
|
||||
;; (advice-add #'set-buffer-modified-p :after #'doom-modeline-update-buffer-file-state-icon)
|
||||
|
||||
(when (>= emacs-major-version 26)
|
||||
(add-variable-watcher
|
||||
|
@ -861,7 +861,7 @@ mouse-1: Previous buffer\nmouse-3: Next buffer"
|
|||
(advice-add #'undo :after #'doom-modeline-update-buffer-file-name)
|
||||
(advice-add #'undo-tree-undo :after #'doom-modeline-update-buffer-file-name)
|
||||
(advice-add #'undo-tree-redo :after #'doom-modeline-update-buffer-file-name)
|
||||
(advice-add #'set-buffer-modified-p :after #'doom-modeline-update-buffer-file-name)
|
||||
;; (advice-add #'set-buffer-modified-p :after #'doom-modeline-update-buffer-file-name)
|
||||
|
||||
(doom-modeline-def-segment buffer-info
|
||||
"Combined information about the current buffer, including the current working
|
||||
|
|
Loading…
Reference in a new issue