mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
fix(lsp): floating window border size for string type 'none' and 'shadow'
This commit is contained in:
parent
68d40388f3
commit
351050a10f
@ -40,9 +40,12 @@ local function get_border_size(opts)
|
||||
local width = 0
|
||||
|
||||
if type(border) == 'string' then
|
||||
-- 'single', 'double', etc.
|
||||
height = 2
|
||||
width = 2
|
||||
local border_size = {none = {0, 0}, single = {2, 2}, double = {2, 2}, shadow = {1, 1}}
|
||||
if border_size[border] == nil then
|
||||
error("floating preview border is not correct. Please refer to the docs |vim.api.nvim_open_win()|"
|
||||
.. vim.inspect(border))
|
||||
end
|
||||
height, width = unpack(border_size[border])
|
||||
else
|
||||
local function border_width(id)
|
||||
if type(border[id]) == "table" then
|
||||
|
Loading…
Reference in New Issue
Block a user