From d1425603f6e0fdcd6fe67c838b4c204e91109a29 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 24 Apr 2024 19:17:10 -0600 Subject: [PATCH] Fix misalignment of vim mode indicator (#10962) Credit-to: @elkowar New is the top Screenshot 2024-04-24 at 19 00 48 Release Notes: - N/A --- crates/vim/src/mode_indicator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/vim/src/mode_indicator.rs b/crates/vim/src/mode_indicator.rs index a7033bc220..9c9f6f3207 100644 --- a/crates/vim/src/mode_indicator.rs +++ b/crates/vim/src/mode_indicator.rs @@ -55,6 +55,7 @@ impl Render for ModeIndicator { Label::new(format!("{} -- {} --", self.operators, mode)) .size(LabelSize::Small) + .line_height_style(LineHeightStyle::UiLabel) .into_any_element() } }