aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/handlers.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-04-06 23:51:15 -0700
committerMichael Lingelbach <m.j.lbach@gmail.com>2021-04-06 23:51:15 -0700
commit2c0bcc539a816bb5c7be0d3d30144d6895b2f9a3 (patch)
treed5518729cfd3cb833b9aa92086b5ae9fc3c1b32d /runtime/lua/vim/lsp/handlers.lua
parentb518b9076f59f3e24e4afb5fb9468b1d5212b1b5 (diff)
downloadrneovim-2c0bcc539a816bb5c7be0d3d30144d6895b2f9a3.tar.gz
rneovim-2c0bcc539a816bb5c7be0d3d30144d6895b2f9a3.tar.bz2
rneovim-2c0bcc539a816bb5c7be0d3d30144d6895b2f9a3.zip
lsp: update documentation on window borders
Diffstat (limited to 'runtime/lua/vim/lsp/handlers.lua')
-rw-r--r--runtime/lua/vim/lsp/handlers.lua22
1 files changed, 2 insertions, 20 deletions
diff --git a/runtime/lua/vim/lsp/handlers.lua b/runtime/lua/vim/lsp/handlers.lua
index e0bb267e27..cbccf16cd5 100644
--- a/runtime/lua/vim/lsp/handlers.lua
+++ b/runtime/lua/vim/lsp/handlers.lua
@@ -250,16 +250,7 @@ end
--- vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
--- vim.lsp.handlers.hover, {
--- -- Use a sharp border with `FloatBorder` highlights
---- border = {
---- {"┌", "FloatBorder"},
---- {"─", "FloatBorder"},
---- {"┐", "FloatBorder"},
---- {"│", "FloatBorder"},
---- {"┘", "FloatBorder"},
---- {"─", "FloatBorder"},
---- {"└", "FloatBorder"},
---- {"│", "FloatBorder"}
---- }
+--- border = "single"
--- }
--- )
--- </pre>
@@ -333,16 +324,7 @@ M['textDocument/implementation'] = location_handler
--- vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
--- vim.lsp.handlers.signature_help, {
--- -- Use a sharp border with `FloatBorder` highlights
---- border = {
---- {"┌", "FloatBorder"},
---- {"─", "FloatBorder"},
---- {"┐", "FloatBorder"},
---- {"│", "FloatBorder"},
---- {"┘", "FloatBorder"},
---- {"─", "FloatBorder"},
---- {"└", "FloatBorder"},
---- {"│", "FloatBorder"}
---- }
+--- border = "single"
--- }
--- )
--- </pre>