helix-mods/helix-core/src/search.rs

64 lines
1,021 B
Rust
Raw Normal View History

2021-03-10 09:50:46 +01:00
use crate::RopeSlice;
pub fn find_nth_next(
text: RopeSlice,
ch: char,
mut pos: usize,
n: usize,
inclusive: bool,
) -> Option<usize> {
if pos >= text.len_chars() {
return None;
}
2021-03-10 09:50:46 +01:00
// start searching right after pos
let mut chars = text.chars_at(pos + 1);
2021-03-10 09:50:46 +01:00
for _ in 0..n {
loop {
let c = chars.next()?;
pos += 1;
if c == ch {
break;
2021-03-10 09:50:46 +01:00
}
}
}
if !inclusive {
pos -= 1;
}
Some(pos)
2021-03-10 09:50:46 +01:00
}
pub fn find_nth_prev(
text: RopeSlice,
ch: char,
mut pos: usize,
n: usize,
inclusive: bool,
) -> Option<usize> {
2021-03-10 09:50:46 +01:00
// start searching right before pos
let mut chars = text.chars_at(pos.saturating_sub(1));
2021-03-10 09:50:46 +01:00
for _ in 0..n {
loop {
let c = chars.prev()?;
pos = pos.saturating_sub(1);
if c == ch {
break;
2021-03-10 09:50:46 +01:00
}
}
}
if !inclusive {
pos -= 1;
}
Some(pos)
2021-03-10 09:50:46 +01:00
}