mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
fix off by one error for completion-replace option (#10279)
This commit is contained in:
parent
0da809c981
commit
6f5ea6be58
@ -284,7 +284,8 @@ fn find_completion_range(text: RopeSlice, replace_mode: bool, cursor: usize) ->
|
||||
.chars_at(cursor)
|
||||
.skip(1)
|
||||
.take_while(|ch| chars::char_is_word(*ch))
|
||||
.count();
|
||||
.count()
|
||||
+ 1;
|
||||
}
|
||||
(start, end)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user