From 73a8622332e36affb7dd431b73155ad0370bdabc Mon Sep 17 00:00:00 2001 From: Daniel <101683475+Koranir@users.noreply.github.com> Date: Mon, 18 Dec 2023 20:06:33 +1100 Subject: [PATCH] Update lsp.rs --- 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 9a2b741ea..b6f06aa1c 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -1690,7 +1690,7 @@ fn compute_inlay_hints_for_view( } type_built_string.push_str(type_hint_suffix); - InlineAnnotation::new(char_index, type_built_string) + InlineAnnotation::new(0, type_built_string) }) .collect() }