forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
Rust
77 lines
2.0 KiB
Rust
use crate::{Range, RopeSlice, Selection, Syntax};
|
|
use tree_sitter::Node;
|
|
|
|
pub fn expand_selection(syntax: &Syntax, text: RopeSlice, selection: Selection) -> Selection {
|
|
select_node_impl(syntax, text, selection, |mut node, from, to| {
|
|
while node.start_byte() == from && node.end_byte() == to {
|
|
node = node.parent()?;
|
|
}
|
|
Some(node)
|
|
})
|
|
}
|
|
|
|
pub fn shrink_selection(syntax: &Syntax, text: RopeSlice, selection: Selection) -> Selection {
|
|
select_node_impl(syntax, text, selection, |descendant, _from, _to| {
|
|
descendant.child(0).or(Some(descendant))
|
|
})
|
|
}
|
|
|
|
pub fn select_sibling<F>(
|
|
syntax: &Syntax,
|
|
text: RopeSlice,
|
|
selection: Selection,
|
|
sibling_fn: &F,
|
|
) -> Selection
|
|
where
|
|
F: Fn(Node) -> Option<Node>,
|
|
{
|
|
select_node_impl(syntax, text, selection, |descendant, _from, _to| {
|
|
find_sibling_recursive(descendant, sibling_fn)
|
|
})
|
|
}
|
|
|
|
fn find_sibling_recursive<F>(node: Node, sibling_fn: F) -> Option<Node>
|
|
where
|
|
F: Fn(Node) -> Option<Node>,
|
|
{
|
|
sibling_fn(node).or_else(|| {
|
|
node.parent()
|
|
.and_then(|node| find_sibling_recursive(node, sibling_fn))
|
|
})
|
|
}
|
|
|
|
fn select_node_impl<F>(
|
|
syntax: &Syntax,
|
|
text: RopeSlice,
|
|
selection: Selection,
|
|
select_fn: F,
|
|
) -> Selection
|
|
where
|
|
F: Fn(Node, usize, usize) -> Option<Node>,
|
|
{
|
|
let tree = syntax.tree();
|
|
|
|
selection.transform(|range| {
|
|
let from = text.char_to_byte(range.from());
|
|
let to = text.char_to_byte(range.to());
|
|
|
|
let node = match tree
|
|
.root_node()
|
|
.descendant_for_byte_range(from, to)
|
|
.and_then(|node| select_fn(node, from, to))
|
|
{
|
|
Some(node) => node,
|
|
None => return range,
|
|
};
|
|
|
|
let from = text.byte_to_char(node.start_byte());
|
|
let to = text.byte_to_char(node.end_byte());
|
|
|
|
if range.head < range.anchor {
|
|
Range::new(to, from)
|
|
} else {
|
|
Range::new(from, to)
|
|
}
|
|
})
|
|
}
|