-
Notifications
You must be signed in to change notification settings - Fork 67
its opening 2 window buffers on launch #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
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. |
@ke-a Did you try the temporary fix from neovim/neovim#30976? |
@ke-a Report it there neovim/neovim#30976 |
Hello, I’m facing the same problem. I’ve tried everything I could find, but I still can't figure it out. i use lunarvim. |
i think Maybe you use VimResized command "wincmd =" autocmd("VimResized", {
pattern = "*",
command = "tabdo wincmd =",
}) Solutionautocmd("VimResized", {
pattern = "*",
callback = function()
local ft = vim.bo.filetype
if "leetcode.nvim" ~= ~= vim.fn.argv(0, -1) then
vim.cmd("tabdo wincmd =")
end
end,
})
|
The text was updated successfully, but these errors were encountered: