Skip to content

Commit 3748ecc

Browse files
committed
fix node:child(0)
1 parent 3b68084 commit 3748ecc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lua/neorg/modules/core/summary/module.lua

+7-4
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,13 @@ module.private = {
183183
local ranged_tag = node:parent()
184184
for child in ranged_tag:iter_children() do
185185
if child:type() == "tag_parameters" then
186-
local _, param = child:iter_children()
187-
local text = module.required["core.integrations.treesitter"].get_node_text(param)
188-
if text == "summary" then
189-
return ranged_tag
186+
local param = child:child(0)
187+
if param ~= nil then
188+
--for param in child:iter_children() do
189+
local text = module.required["core.integrations.treesitter"].get_node_text(param)
190+
if text == "summary" then
191+
return ranged_tag
192+
end
190193
end
191194
end
192195
end

0 commit comments

Comments
 (0)