Results 29 comments of distek

Wanted to add a note for this. Setting `glx-copy-from-front` to disabled corrected it for me. This is with `glx-swap-method` at any level. For reference, here's the relevant part of my...

> I had the same issue, but I found a temporary workaround; by launching Neovide with `env -u WAYLAND_DISPLAY` before the executable, it started in Xwayland and worked as expected....

This has been an issue for for as long a I can remember. I recently tried FL on windows and noticed that it's a lot less glitchy but still relatively...

I know it's almost a year after the last reply, but: ```lua vim.api.nvim_create_autocmd( { "VimEnter", "BufNew", "BufReadPost", "BufDelete", "BufWipeout" }, { callback = function() vim.defer_fn(function() local getCount = function() local...

Was playing around with this. If I pass an empty table to the startup (`startup({})`, it shows the error. I copied the default "dashboard" config into my startup config directly...

edit: https://github.com/ldelossa/nvim-ide/issues/14#issuecomment-1328509373

I think the one I wrote there could be a bit more robust. Also I'm starting to think QuitPre might be the wrong event to track. I can't actually `:qa`...

With WinClosed, it will trigger on _any_ window being closed, including completion windows, Noice's prompts, etc. I'm not really sure what the best way to handle this is.

This seems to work as expected: ```lua vim.api.nvim_create_autocmd("WinClosed", { pattern = { "*" }, callback = function() vim.cmd("wincmd c") local stdBufCount = 0 for _, v in ipairs(vim.api.nvim_list_wins()) do local...

The autocmd actually triggers _before_ the window is closed, which I wasn't expecting. Found that by placing a print statement in after the loop; It print's before closing the window....