blob: c03f60df0a5087a9b104df2670f2480c166ba04f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
use crate::RopeSlice;
pub fn find_nth_next(text: RopeSlice, ch: char, mut pos: usize, n: usize) -> Option<usize> {
// start searching right after pos
let mut chars = text.chars_at(pos + 1);
for _ in 0..n {
loop {
let c = chars.next()?;
pos += 1;
if c == ch {
break;
}
}
}
Some(pos)
}
pub fn find_nth_prev(text: RopeSlice, ch: char, mut pos: usize, n: usize) -> Option<usize> {
// start searching right before pos
let mut chars = text.chars_at(pos.saturating_sub(1));
for _ in 0..n {
loop {
let c = chars.prev()?;
pos = pos.saturating_sub(1);
if c == ch {
break;
}
}
}
Some(pos)
}
|