mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Highlight workspace number.
This commit is contained in:
parent
226a15cf7d
commit
435634083d
1 changed files with 2 additions and 4 deletions
|
@ -181,9 +181,6 @@ active.")
|
||||||
(defface doom-modeline-inactive-bar '((t (:inherit warning :inverse-video t)))
|
(defface doom-modeline-inactive-bar '((t (:inherit warning :inverse-video t)))
|
||||||
"The face used for the left-most bar on the mode-line of an inactive window.")
|
"The face used for the left-most bar on the mode-line of an inactive window.")
|
||||||
|
|
||||||
(defface doom-modeline-eyebrowse '((t ()))
|
|
||||||
"The face used for eyebrowse.")
|
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
;; Modeline library
|
;; Modeline library
|
||||||
|
@ -942,7 +939,8 @@ enabled."
|
||||||
(str (if (and tag (< 0 (length tag)))
|
(str (if (and tag (< 0 (length tag)))
|
||||||
tag
|
tag
|
||||||
(when num (int-to-string num)))))
|
(when num (int-to-string num)))))
|
||||||
(propertize (format "%s " str) 'face 'doom-modeline-eyebrowse))
|
(propertize (format " %s " str) 'face
|
||||||
|
(if (doom-modeline--active) 'doom-modeline-highlight)))
|
||||||
""))
|
""))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue