summaryrefslogtreecommitdiff
path: root/lua/lvim/lsp/handlers.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-05-03 08:55:15 +0200
committerkylo252 <[email protected]>2022-05-03 08:55:15 +0200
commite264bff7e820ba891cd16892de52236d62f7821f (patch)
tree4262530ac7738ebdec0fa6abab560610789b72f3 /lua/lvim/lsp/handlers.lua
parentad5eeaf6ad12cf05e4b936690bf78bc53827b12c (diff)
parentcfa702e6fe2f875a2c674182fe2f86e8f613aa1e (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lvim/lsp/handlers.lua')
-rw-r--r--lua/lvim/lsp/handlers.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/lua/lvim/lsp/handlers.lua b/lua/lvim/lsp/handlers.lua
index 5da0b21e..84f2ba5f 100644
--- a/lua/lvim/lsp/handlers.lua
+++ b/lua/lvim/lsp/handlers.lua
@@ -16,10 +16,4 @@ function M.setup()
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, lvim.lsp.float)
end
-function M.show_line_diagnostics()
- local config = lvim.lsp.diagnostics.float
- config.scope = "line"
- return vim.diagnostic.open_float(0, config)
-end
-
return M