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 {
|
if replace_mode {
|
||||||
end += text
|
end += text
|
||||||
.chars_at(cursor)
|
.chars_at(cursor)
|
||||||
.skip(1)
|
|
||||||
.take_while(|ch| chars::char_is_word(*ch))
|
.take_while(|ch| chars::char_is_word(*ch))
|
||||||
.count()
|
.count();
|
||||||
+ 1;
|
|
||||||
}
|
}
|
||||||
(start, end)
|
(start, end)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue