fix off by one error for completion-replace option (#10279)
This commit is contained in:
parent
0da809c981
commit
6f5ea6be58
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue