mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Fix #178: "Error during redisplay" when org agenda mode is enabled.
This commit is contained in:
parent
64631d103a
commit
f524bbc622
2 changed files with 4 additions and 4 deletions
|
@ -486,7 +486,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
|
||||||
(propertize
|
(propertize
|
||||||
(concat
|
(concat
|
||||||
(doom-modeline-spc)
|
(doom-modeline-spc)
|
||||||
(propertize mode-name
|
(propertize (format-mode-line mode-name)
|
||||||
'help-echo "Major mode\n\
|
'help-echo "Major mode\n\
|
||||||
mouse-1: Display major mode menu\n\
|
mouse-1: Display major mode menu\n\
|
||||||
mouse-2: Show help for major mode\n\
|
mouse-2: Show help for major mode\n\
|
||||||
|
@ -517,7 +517,7 @@ mouse-3: Toggle minor modes"
|
||||||
(if (doom-modeline--active)
|
(if (doom-modeline--active)
|
||||||
mode-line-process
|
mode-line-process
|
||||||
(propertize
|
(propertize
|
||||||
(format-mode-line '("" mode-line-process))
|
(format-mode-line mode-line-process)
|
||||||
'face 'mode-line-inactive)))
|
'face 'mode-line-inactive)))
|
||||||
|
|
||||||
|
|
||||||
|
@ -545,7 +545,7 @@ mouse-1: Display minor modes menu"
|
||||||
(concat
|
(concat
|
||||||
(replace-regexp-in-string (regexp-quote "%")
|
(replace-regexp-in-string (regexp-quote "%")
|
||||||
"%%%%"
|
"%%%%"
|
||||||
(format-mode-line '("" minor-mode-alist))
|
(format-mode-line minor-mode-alist)
|
||||||
t t)
|
t t)
|
||||||
(doom-modeline-spc))
|
(doom-modeline-spc))
|
||||||
'face (if active
|
'face (if active
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Vincent Zhang <seagle0128@gmail.com>
|
;; Author: Vincent Zhang <seagle0128@gmail.com>
|
||||||
;; Homepage: https://github.com/seagle0128/doom-modeline
|
;; Homepage: https://github.com/seagle0128/doom-modeline
|
||||||
;; Version: 2.3.1
|
;; Version: 2.3.2
|
||||||
;; Package-Requires: ((emacs "25.1") (all-the-icons "1.0.0") (shrink-path "0.2.0") (dash "2.11.0"))
|
;; Package-Requires: ((emacs "25.1") (all-the-icons "1.0.0") (shrink-path "0.2.0") (dash "2.11.0"))
|
||||||
;; Keywords: faces mode-line
|
;; Keywords: faces mode-line
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue