Skip to content

Commit 744bd6d

Browse files
committed
fix(nvim): correct side panel height calculation
1 parent ec35479 commit 744bd6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/lib/ui.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ M.side_panel_win_config = function()
77
anchor = "NE",
88
border = { "", "", "", "", "", "", "", "" },
99
col = vim.o.columns,
10-
height = vim.o.lines - vim.o.cmdheight - 1,
10+
height = vim.o.lines - vim.o.cmdheight,
1111
relative = "editor",
1212
row = 0,
1313
style = "minimal",

0 commit comments

Comments
 (0)