mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Monitor buffer-read-only for all operations.
This commit is contained in:
parent
262e42109c
commit
99a0bd9f12
2 changed files with 4 additions and 5 deletions
|
@ -290,10 +290,9 @@ Uses `all-the-icons-material' to fetch the icon."
|
|||
(when (>= emacs-major-version 26)
|
||||
(add-variable-watcher
|
||||
'buffer-read-only
|
||||
(lambda (_sym val op _where)
|
||||
(when (eq op 'set)
|
||||
(lambda (_sym val _op _where)
|
||||
(setq buffer-read-only val)
|
||||
(doom-modeline-update-buffer-file-state-icon))))
|
||||
(doom-modeline-update-buffer-file-state-icon)))
|
||||
|
||||
(add-variable-watcher
|
||||
'doom-modeline-icon
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Vincent Zhang <seagle0128@gmail.com>
|
||||
;; Homepage: https://github.com/seagle0128/doom-modeline
|
||||
;; Version: 1.9.5
|
||||
;; Version: 1.9.6
|
||||
;; Package-Requires: ((emacs "25.1") (all-the-icons "1.0.0") (shrink-path "0.2.0") (eldoc-eval "0.1") (dash "2.11.0"))
|
||||
;; Keywords: faces mode-line
|
||||
|
||||
|
|
Loading…
Reference in a new issue