Skip to content

Commit b3b58f7

Browse files
fix(agenda): Increase height of tmp window to avoid winbar issues
1 parent 2ed4742 commit b3b58f7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lua/orgmode/utils/init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,8 @@ function utils.edit_file(filename)
524524
vim.api.nvim_open_win(bufnr, true, {
525525
relative = 'editor',
526526
width = 1,
527-
height = 1,
527+
-- Use height of 2 to resolve winbar issues
528+
height = 2,
528529
row = 99999,
529530
col = 99999,
530531
zindex = 1,

0 commit comments

Comments
 (0)