fredizzimo

Results 1393 comments of fredizzimo

@9mm, I see it's this condition in the code: ```rust // Never fork unless a tty is attached if !settings.fork || !utils::is_tty() { return; } ``` And because your script...

I think you can remove the `/dev/null` redirection, it should not print anything when it's forking anyway

Thank you, this is great! The changes themselves look good, but I'm holding off with merging, until it's clear that we get an exception to be allowed to launch nvim....

@sqwxl, I will look at the other issues a bit later, but just quick comment for now Notice that you will need some other dependencies as well, at least some...

> > **Update**: Following some [feedback](https://github.com/flathub/flathub/pull/5017#issuecomment-1989781021) from a Flathub maintainer, it was suggested that the flatpak Neovide should still work when the host doesn't have neovim installed (or it just...

The main reason we don't instructions for winget is that we haven't found a maintainer that regularly updates it, so the versions often lag behind as you probably noticed when...

That's pretty bad, and unlike the original reported bug, I don't think we can do anything about it on the Neovide side. I will try to repeat it, get a...

I was just going to report this to Neovim, but I noticed that it happens in the terminal mode as well, with the following steps 1. create a file `cursor_move.lua`...

The original bug can indeed be fixed by handling the other command line modes as suggested in the initial message. So it remains to see if the `mini.clue` bug should...

@echasnovski, thanks. It looks like what caused the bug in the first place: * https://github.com/neovim/neovim/pull/27858 Would also let you to control the cursor position during the call, if I'm understanding...