aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-04-07 00:29:39 -0700
committerGitHub <noreply@github.com>2021-04-07 00:29:39 -0700
commitc2298503ce6480554e176e5c17e55974c0453959 (patch)
treed5518729cfd3cb833b9aa92086b5ae9fc3c1b32d /runtime/lua/vim
parentb518b9076f59f3e24e4afb5fb9468b1d5212b1b5 (diff)
parent2c0bcc539a816bb5c7be0d3d30144d6895b2f9a3 (diff)
downloadrneovim-c2298503ce6480554e176e5c17e55974c0453959.tar.gz
rneovim-c2298503ce6480554e176e5c17e55974c0453959.tar.bz2
rneovim-c2298503ce6480554e176e5c17e55974c0453959.zip
Merge pull request #14308 from mjlbach/lsp_update_docs
lsp: update documentation on window borders
Diffstat (limited to 'runtime/lua/vim')
-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>