فهرست منبع

fix: always use border for lsp hover (#3160)

opalmay 2 سال پیش
والد
کامیت
5a4c8e3eec
1فایلهای تغییر یافته به همراه1 افزوده شده و 3 حذف شده
  1. 1 3
      lua/lvim/lsp/handlers.lua

+ 1 - 3
lua/lvim/lsp/handlers.lua

@@ -12,9 +12,7 @@ function M.setup()
     float = lvim.lsp.diagnostics.float,
   }
   vim.diagnostic.config(config)
-  if not lvim.builtin.illuminate.active then
-    vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, lvim.lsp.float)
-  end
+  vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, lvim.lsp.float)
   vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, lvim.lsp.float)
 end