its opening 2 window buffers on launch
if u leave them both open it causes really buggy behaviour when the code editor is open as well and starts deleting stuff when you press ctrl s
Seems like it is neovim related issue, but it's fixed for now nonetheless.
I met the same problem on the dashboard and the code editor when I stretch the terminal. I use the lastest commit.
@ke-a Did you try the temporary fix from https://github.com/neovim/neovim/issues/30976?
Yes,but I met this problem too. And I also met the problem on the coding interface when I stretch the terminal.
@ke-a Report it there https://github.com/neovim/neovim/issues/30976
Yes,but I met this problem too. And I also met the problem on the coding interface when I stretch the terminal.
having this issue as well -- on resize creates a duplicate neovim window
Hello, I’m facing the same problem. For me, the problem part window keeps being split up and down like the picture above. It's fine when i first enter the problem, but if you drastically reduce the window size, it gets split like that.
I’ve tried everything I could find, but I still can't figure it out. If anyone has solved this issue, please let me know.
i use lunarvim.
i think Maybe you use VimResized command "wincmd ="
autocmd("VimResized", {
pattern = "*",
command = "tabdo wincmd =",
})
Solution
autocmd("VimResized", {
pattern = "*",
callback = function()
local ft = vim.bo.filetype
if "leetcode.nvim" ~= ~= vim.fn.argv(0, -1) then
vim.cmd("tabdo wincmd =")
end
end,
})