Skip to content

Commit 4be6263

Browse files
Use built-in ts function to get node at cursor position
1 parent bf53c20 commit 4be6263

File tree

1 file changed

+6
-27
lines changed

1 file changed

+6
-27
lines changed

lua/orgmode/utils/treesitter.lua

+6-27
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,13 @@ end
1212
---@param winnr? number
1313
---@param ignore_injected_langs? boolean
1414
function M.get_node_at_cursor(cursor, winnr, ignore_injected_langs)
15-
winnr = winnr or 0
16-
cursor = cursor or vim.api.nvim_win_get_cursor(winnr)
17-
local cursor_range = { cursor[1] - 1, cursor[2] }
18-
19-
local buf = vim.api.nvim_win_get_buf(winnr)
20-
local root_lang_tree = parsers.get_parser(buf)
21-
if not root_lang_tree then
22-
return
23-
end
24-
25-
local root
26-
if ignore_injected_langs then
27-
for _, tree in ipairs(root_lang_tree:trees()) do
28-
local tree_root = tree:root()
29-
if tree_root and ts_utils.is_in_node_range(tree_root, cursor_range[1], cursor_range[2]) then
30-
root = tree_root
31-
break
32-
end
33-
end
34-
else
35-
root = ts_utils.get_root_for_position(cursor_range[1], cursor_range[2], root_lang_tree)
36-
end
37-
38-
if not root then
39-
return
15+
if not cursor then
16+
return ts_utils.get_node_at_cursor(winnr, ignore_injected_langs)
4017
end
41-
42-
return root:named_descendant_for_range(cursor_range[1], cursor_range[2], cursor_range[1], cursor_range[2])
18+
local buf = vim.api.nvim_win_get_buf(winnr or 0)
19+
return vim.treesitter.get_node_at_position(buf, cursor[1] - 1, cursor[2], {
20+
ignore_injections = ignore_injected_langs,
21+
})
4322
end
4423

4524
-- walks the tree to find a headline

0 commit comments

Comments
 (0)