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 a7107f8 commit 0e7b333
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/ionide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,8 @@ function M.CreateHandlers()
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)
-- M[method](params)
M[method](err or "No Error", params or "No Params", ctx or "No Context", config or "No Configs")
end
end
end
Expand Down

0 comments on commit 0e7b333

Please sign in to comment.