diff options
author | Christian Chiarulli <[email protected]> | 2022-09-19 13:12:52 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-19 13:12:52 -0400 |
commit | 352147158bb696e4b8fcb236d2cb477955b26dcf (patch) | |
tree | cf787c1d9ada73fe047368addccc493d9cf2cde5 /lua/lvim/lsp | |
parent | d44da34e92f92bbe59d2fca5965aa9c35c64374c (diff) |
feat(document highlight): use illuminate rather than autocommand to avoid flashing (#3029)
Diffstat (limited to 'lua/lvim/lsp')
-rw-r--r-- | lua/lvim/lsp/handlers.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/lvim/lsp/handlers.lua b/lua/lvim/lsp/handlers.lua index 84f2ba5f..45b1989d 100644 --- a/lua/lvim/lsp/handlers.lua +++ b/lua/lvim/lsp/handlers.lua @@ -12,7 +12,6 @@ function M.setup() float = lvim.lsp.diagnostics.float, } vim.diagnostic.config(config) - 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 |