fredizzimo

Results 1393 comments of fredizzimo

The workaround for now, is to use `neovide --no-multigrid`

You are correct that according to the documentation, this should not happen. https://neovim.io/doc/user/syntax.html#highlight-blend > Override the blend level for a highlight group within the popupmenu or floating windows. Only takes...

If you are still wondering about the implementation, you should be able to to use the `ParallelCommand::FileDrop` that we already have and use here https://github.com/neovide/neovide/blob/eeac6e76fc19eefe07162148510f723706d49481/src/window/mod.rs#L199-L205 You just need to wait...

This was fixed by: * https://github.com/neovide/neovide/pull/2395

We need to implement winit `OptionAsAlt` https://github.com/rust-windowing/winit/pull/2887, instead of our custom `neovide_input_macos_alt_is_meta`, just call `window.set_option_as_alt` With that we should also be able to remove all the customization for MacOS in...

I rhink you need to send a patch to Neovim first, and I think you have even looked at that issue before, according to the github references. * https://github.com/neovim/neovim/issues/21458,

Neovide is using the default operating system mouse cursor, so it should show. But there might be a bug in the hiding behaviour, do you have `neovide_hide_mouse_when_typing` enabled? https://neovide.dev/configuration.html#hiding-the-mouse-when-typing

Could you try with `neovide_hide_mouse_when_typing=false` and see if the problem goes away. We need to figure out if the problem is with that or something else.

There is no special cursor for Neovide, but your standard operating system mouse cursor should show. Do you mean that your operating system cursor becomes hidden when you move it...

Ok, I understand now. But two questions? 1. How do you hide the cursor before starting Neovide? 2. Are you on macOS? There's this winit bug that could explain it...