From 0a38a65d39aae35e15df7b3b9d23228305339faa Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Tue, 12 Mar 2019 18:18:11 +0700 Subject: [PATCH] Improve multiple-cursor segment. --- doom-modeline-segments.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doom-modeline-segments.el b/doom-modeline-segments.el index 49e582a..a836c09 100644 --- a/doom-modeline-segments.el +++ b/doom-modeline-segments.el @@ -1085,7 +1085,9 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with ((cons nil nil))) (when count (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 (format "%d " count) 'face face)))))