fix(lsp): return call hierarchy item, not the index (#30145)

This commit is contained in:
Maria José Solano
2024-08-26 08:37:36 -07:00
committed by GitHub
parent 0e394f136f
commit d9ccd828b0

View File

@ -464,7 +464,7 @@ local function pick_call_hierarchy_item(call_hierarchy_items)
if choice < 1 or choice > #items then
return
end
return choice
return call_hierarchy_items[choice]
end
--- @param method string