mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
fix(lsp): return call hierarchy item, not the index (#30145)
This commit is contained in:

committed by
GitHub

parent
0e394f136f
commit
d9ccd828b0
@@ -464,7 +464,7 @@ local function pick_call_hierarchy_item(call_hierarchy_items)
|
|||||||
if choice < 1 or choice > #items then
|
if choice < 1 or choice > #items then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
return choice
|
return call_hierarchy_items[choice]
|
||||||
end
|
end
|
||||||
|
|
||||||
--- @param method string
|
--- @param method string
|
||||||
|
Reference in New Issue
Block a user