diff options
author | Siddhant Agarwal <68201519+siddhantdev@users.noreply.github.com> | 2025-04-09 16:45:33 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-09 04:15:33 -0700 |
commit | f068386c9f709c586f44169f4566b4e31ce973de (patch) | |
tree | 28d004425528c907a123cba91daf7881aa110b2f | |
parent | 5a94edad70f9c47250fa53dd73cf30f191a3cd49 (diff) | |
download | rneovim-f068386c9f709c586f44169f4566b4e31ce973de.tar.gz rneovim-f068386c9f709c586f44169f4566b4e31ce973de.tar.bz2 rneovim-f068386c9f709c586f44169f4566b4e31ce973de.zip |
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
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index 49f2126e32..82fc39142d 100644 --- 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 |