mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Respect injections in movement::move_parent_node_end
This commit is contained in:
parent
8b6565c839
commit
035b8eabdb
2 changed files with 7 additions and 6 deletions
|
@ -1352,6 +1352,12 @@ impl Syntax {
|
|||
self.layers[container_id].tree()
|
||||
}
|
||||
|
||||
pub fn named_descendant_for_byte_range(&self, start: usize, end: usize) -> Option<Node<'_>> {
|
||||
self.tree_for_byte_range(start, end)
|
||||
.root_node()
|
||||
.named_descendant_for_byte_range(start, end)
|
||||
}
|
||||
|
||||
pub fn descendant_for_byte_range(&self, start: usize, end: usize) -> Option<Node<'_>> {
|
||||
self.tree_for_byte_range(start, end)
|
||||
.root_node()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue