fredizzimo
fredizzimo
On Wayland we should use https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_blur where supported
macOS also supports blur through winit in the latest release https://github.com/rust-windowing/winit/releases/tag/v0.29.3, so on that there's now two alternatives, the `window-vibrancy` crate and the winit one. The vibrancy crate is a...
@Kethku, I think we should implement this totally with winit now. Acryllic backdrop support was added here, and as mentioned earlier, both macOS and Wayland has blur support. * https://github.com/rust-windowing/winit/pull/3257...
Once wayland is added it should also close this issue * https://github.com/neovide/neovide/issues/1936
Can you test this with terminal mode Neovim? Neovide itself should use the default Neovim clipboard integration unless you use wsl or a tcp connection to Neovim. More specifically it...
You could try to disable Neovide`s clipboard, although it should already be disabled. vim: `let g:neovide_no_custom_clipboard = v:true` lua: `vim.g.neovide_no_custom_clipboard = true` Are you on Wayland or X11, and which...
Hm. I'm not sure what's going on here. It's Neovim that launches the clipboard and is supposed to close it, but for some reason that does not happen. I'm also...
Can you test with https://github.com/neovide/neovide/pull/2009? I changed our exit code slightly to properly wait for Neovim to exit before terminating. There's a small chance that it fixes the issue.
This is not a universal problem, so it's hard to fix. I don't have this problem in either KDE, Gnome, Sway or Hyprland, which I have all used recently, all...
Does neovim-qt exit cleanly or, forcefully after 500ms of waiting? https://github.com/equalsraf/neovim-qt/blob/f5c95b19512ad0e3662be32507adfca8e2401c13/src/gui/mainwindow.cpp#L235-L253