Skip to content

Commit

Permalink
fix(handlers): hover handler given correct params.
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Ehrendreich authored and Will Ehrendreich committed Nov 7, 2023
1 parent 0e7b333 commit b601f43
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lua/ionide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -976,9 +976,10 @@ function M.CreateHandlers()
M[method](err or "No Error", params or "No Params", ctx or "No Context", config or "No Configs")
elseif method == "fsharp/documentationSymbol" then
M[method](err or "No Error", params or "No Params", ctx or "No Context", config or "No Configs")
else
-- M[method](params)
elseif method == "textDocument/hover" then
M[method](err or "No Error", params or "No Params", ctx or "No Context", config or "No Configs")
else
M[method](params)
end
end
end
Expand Down

0 comments on commit b601f43

Please sign in to comment.