mirror of https://github.com/helix-editor/helix
parent
3ace581191
commit
0851110d10
|
@ -7,6 +7,10 @@ pub fn find_nth_next(
|
||||||
n: usize,
|
n: usize,
|
||||||
inclusive: bool,
|
inclusive: bool,
|
||||||
) -> Option<usize> {
|
) -> Option<usize> {
|
||||||
|
if pos >= text.len_chars() {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
// start searching right after pos
|
// start searching right after pos
|
||||||
let mut chars = text.chars_at(pos + 1);
|
let mut chars = text.chars_at(pos + 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue