fredizzimo
fredizzimo
Closing this as a graphics driver issue. It's very unlikely that we could do anything on the Neovide side.
The reason for this is that Neovide does not launch an interactive shell, which means that some of the shell configuration scripts are not sourced. Given that you are on...
It should be enough to modify your user `~/.zprofile`, but you might have to create the file if it doesn't exist. If not, then something is probably still messed up...
I think `~/.zprofile` is better and the correct fix, and if it does not work, we need to find a way to fix it. It also follows the advice you...
Here's a detailed description of the macOS specific problem with `.zshenv` and `path-helper` https://gist.github.com/Linerre/f11ad4a6a934dcf01ee8415c9457e7b2 Note that `.zshrc` is always the wrong place to set environment variables on all platforms.
It's just the documentation that's wrong, but it has not been merged yet due to problems with our CI. But until then, you can see the updated documentation here https://github.com/neovide/neovide/blob/969351f37e9e050bb78a2dfb0c58de3ead4597f9/website/docs/config-file.md
I'm not sure if it will work out of the box or not but Winit 0.30 added this https://docs.rs/winit/latest/winit/platform/windows/enum.CornerPreference.html. But we sre still in 0.29, so it's not as easy...
Winit 0.30.3 has now been merged, so if someone wants to implement this, it should now be possible.
The log shows that `` is received by winit, but for some reason not sent to Neovim [neovide_rCURRENT.log](https://github.com/user-attachments/files/15987217/neovide_rCURRENT.4.log)
I won't be able to fix this myself until earliest the end of next week, but I think the problem is this condition https://github.com/neovide/neovide/blob/24fcfc94c30775a6ff08277e76d266d2a1bde62c/src/window/keyboard_manager.rs#L301-L308 `None` should also generate `space`, in...