fix off by one error for completion-replace option (#10279)

pull/10290/head
Pascal Kuthe 2 months ago committed by GitHub
parent 0da809c981
commit 6f5ea6be58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -284,7 +284,8 @@ pub mod util {
.chars_at(cursor)
.skip(1)
.take_while(|ch| chars::char_is_word(*ch))
.count();
.count()
+ 1;
}
(start, end)
}

Loading…
Cancel
Save