fix: fix window size
This commit is contained in:
parent
5a1a1b6565
commit
4fbec6578b
@ -102,11 +102,11 @@ M.setup = function(opts)
|
||||
|
||||
local float = M.conf.float
|
||||
|
||||
if float.height < 0 and float.height <= 1 then
|
||||
if 0 < float.height and float.height <= 1 then
|
||||
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
|
||||
end
|
||||
|
||||
if float.width < 0 and float.width <= 1 then
|
||||
if 0 < float.width and float.width <= 1 then
|
||||
float.width = math.floor(vim.o.columns * float.width)
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user