feat: add expand/shrink_selection and select_next/prev_sibling commands
This commit is contained in:
parent
3e42e08095
commit
40e4f73571
1 changed files with 6 additions and 0 deletions
|
@ -184,3 +184,9 @@ pub fn highlights_at_point(self: *const Self, ctx: anytype, comptime cb: CallBac
|
|||
}
|
||||
return;
|
||||
}
|
||||
|
||||
pub fn node_at_point_range(self: *const Self, range: Range) error{Stop}!treez.Node {
|
||||
const tree = self.tree orelse return error.Stop;
|
||||
const root_node = tree.getRootNode();
|
||||
return treez.Node.externs.ts_node_descendant_for_point_range(root_node, range.start_point, range.end_point);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue