fredizzimo

Results 1393 comments of fredizzimo

Hm. It looks like creating maximized windows on X11 needs special handling. See: * https://github.com/rust-windowing/winit/issues/2360 But we only want to do that on X11 to avoid unwanted animations on other...

The standard vim mapping for this would be `vim.keymap.set('i', '', '+')` But I think that Neovide should provide a better alternative using bracketed paste with https://neovim.io/doc/user/api.html#nvim_paste() Something like this https://github.com/neovide/neovide/issues/1263#issuecomment-1972013043,...

For now, I think that bracketed paste can be implemented by a mapping like this: * https://github.com/neovide/neovide/issues/1263#issuecomment-1972013043 I don't see much difference between that and a more native Neovide way....

It's not recommended to use the linux version of Neovide in wsl. It might work if you have `WSLg` properly setup. https://learn.microsoft.com/en-us/windows/wsl/tutorials/gui-apps. But it's not a configuration we actively support...

@Geobert, how long have you waited before killing Neovide? Sometimes it can take a long time for WSL to start. Another thing that you could try is `neovide.exe --opengl --wsl...

It should not matter the windows command promt, powershell and the wsl shell should all work, since you are running neovide.exe. Personally I run it through a pinned taskbar shortcut.

I was just going to ask you to try the server approach. But if that works, there's some problem either launching or connecting the stdout to Neovim Can you try...

Hm, maybe it's the `$SHELL` environment variable that doesn't work for you for some reason, or that the quotes I gave in the command, you could try the following variations,...

The problem might also be caused by the pipe communication problems we have * https://github.com/neovide/neovide/issues/2299 * https://github.com/neovide/neovide/issues/2182 * And the comments in https://github.com/neovide/neovide/pull/2463

It's hard to tell what's wrong without more debugging or logging. My guess is that this never returns https://github.com/neovide/neovide/blob/24fcfc94c30775a6ff08277e76d266d2a1bde62c/src/bridge/mod.rs#L78-L80 But it could hang before or after that.