From 857467f8daad1aece913bf27ea1de5e36a974e82 Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:07:39 +0000 Subject: [PATCH] feat: add space --- helix-term/src/commands/lsp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs index 7b77c12d..e08150ca 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -1499,7 +1499,7 @@ fn compute_color_swatches_for_view( None => continue, }; - color_swatches.push(InlineAnnotation::new(char_idx, "■")); + color_swatches.push(InlineAnnotation::new(char_idx, "■ ")); colors.push(Color::Rgb( (swatch.color.red * 255.) as u8, (swatch.color.green * 255.) as u8,