mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Improve multiple-cursor segment.
This commit is contained in:
parent
5985a573f1
commit
0a38a65d39
1 changed files with 3 additions and 1 deletions
|
@ -1085,7 +1085,9 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with
|
||||||
((cons nil nil)))
|
((cons nil nil)))
|
||||||
(when count
|
(when count
|
||||||
(concat (propertize " " 'face face)
|
(concat (propertize " " 'face face)
|
||||||
(doom-modeline-icon-faicon "i-cursor" :face face :v-adjust -0.1)
|
(if doom-modeline-icon
|
||||||
|
(doom-modeline-icon-faicon "i-cursor" :face face :v-adjust -0.0575)
|
||||||
|
(propertize "I" 'face `(:inherit ,face :height 1.4) 'display '(raise -0.085)))
|
||||||
(propertize doom-modeline-vspc 'face `(:inherit (variable-pitch ,face)))
|
(propertize doom-modeline-vspc 'face `(:inherit (variable-pitch ,face)))
|
||||||
(propertize (format "%d " count)
|
(propertize (format "%d " count)
|
||||||
'face face)))))
|
'face face)))))
|
||||||
|
|
Loading…
Reference in a new issue