mirror of https://github.com/helix-editor/helix
fix(lsp): `find_completion_range` off-by-one (#11266)
parent
9d21b8fa85
commit
7c5e5f4e41
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue