From 72553b2e8be2021d4e777f967f77e62ff1b06794 Mon Sep 17 00:00:00 2001 From: Rolo Date: Wed, 24 Jul 2024 08:05:33 -0700 Subject: [PATCH] fix(lsp): `find_completion_range` off-by-one --- helix-lsp/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index ec89e1f82186..4a27802d337b 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -284,10 +284,8 @@ pub mod util { if replace_mode { end += text .chars_at(cursor) - .skip(1) .take_while(|ch| chars::char_is_word(*ch)) - .count() - + 1; + .count(); } (start, end) }