From a7107f8d5668e1460aa1f9a80f8a26a63ed0d4a9 Mon Sep 17 00:00:00 2001 From: Will Ehrendreich Date: Tue, 7 Nov 2023 15:18:09 -0600 Subject: [PATCH] fix(notify): stopped notifying about hovers --- lua/ionide/init.lua | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lua/ionide/init.lua b/lua/ionide/init.lua index 1f886f8..49afa5b 100644 --- a/lua/ionide/init.lua +++ b/lua/ionide/init.lua @@ -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 @@ -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