Respect injections in :tree-sitter-highlight-name

This commit is contained in:
Michael Davis 2024-01-25 14:29:49 -05:00 committed by Blaž Hrastnik
parent 5e0b3cc28b
commit 8b6565c839

View File

@ -1546,10 +1546,7 @@ fn find_highlight_at_cursor(
let text = doc.text().slice(..);
let cursor = doc.selection(view.id).primary().cursor(text);
let byte = text.char_to_byte(cursor);
let node = syntax
.tree()
.root_node()
.descendant_for_byte_range(byte, byte)?;
let node = syntax.descendant_for_byte_range(byte, byte)?;
// Query the same range as the one used in syntax highlighting.
let range = {
// Calculate viewport byte ranges: