mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +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
|
||||
return
|
||||
end
|
||||
return choice
|
||||
return call_hierarchy_items[choice]
|
||||
end
|
||||
|
||||
--- @param method string
|
||||
|
Reference in New Issue
Block a user