Skip to content

Commit

Permalink
fix(notify): stopped notifying about hovers
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 8571f00 commit a7107f8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lua/ionide/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -673,13 +673,13 @@ M["textDocument/documentHighlight"] = function(error, result, context, config)
end

M["textDocument/hover"] = function(error, result, context, config)
M.notify(
"handling "
.. "textDocument/hover"
.. " | "
.. "result is: \n"
.. vim.inspect({ error or "", result or "", context or "", config or "" })
)
-- M.notify(
-- "handling "
-- .. "textDocument/hover"
-- .. " | "
-- .. "result is: \n"
-- .. vim.inspect({ error or "", result or "", context or "", config or "" })
-- )
if result then
if result.content then
end
Expand All @@ -688,13 +688,13 @@ M["textDocument/hover"] = function(error, result, context, config)
end

M["fsharp/documentationSymbol"] = function(error, result, context, config)
M.notify(
"handling "
.. "fsharp/documentationSymbol"
.. " | "
.. "result is: \n"
.. vim.inspect({ error or "", result or "", context or "", config or "" })
)
-- M.notify(
-- "handling "
-- .. "fsharp/documentationSymbol"
-- .. " | "
-- .. "result is: \n"
-- .. vim.inspect({ error or "", result or "", context or "", config or "" })
-- )
if result then
if result.content then
end
Expand Down

0 comments on commit a7107f8

Please sign in to comment.