commit f068386c9f709c586f44169f4566b4e31ce973de
parent 5a94edad70f9c47250fa53dd73cf30f191a3cd49
Author: Siddhant Agarwal <68201519+siddhantdev@users.noreply.github.com>
Date: Wed, 9 Apr 2025 16:45:33 +0530
fix(lsp): "bold" border for vim.lsp.buf.hover #33395
Problem: vim.lsp.buf.hover allows a bold border size which hasn't been
defined
Solution: Define the bold border size for vim.lsp.buf.hover
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua
@@ -24,6 +24,7 @@ local border_size = {
rounded = { 2, 2 },
solid = { 2, 2 },
shadow = { 1, 1 },
+ bold = { 2, 2 },
}
--- Check the border given by opts or the default border for the additional