fredizzimo

Results 1393 comments of fredizzimo

I'm starting to run out of ideas, but updating the toolchain might help: ´rustup update` You could also update Visual Studio, or the Microsoft c++ build tools, since the rust...

Another thing you could try is to attach the debugger instead of launching. So start neovide normally, then run attach and select neovide from the list. ```json { "version": "0.2.0",...

Yes, some. It's failing to read from the stdio pipe to Neovim. And the symptoms and error message matches this bug https://github.com/rust-lang/rust/issues/98947 So, either the bug is not properly fixed,...

Based on the hash it looks like you have the latest 1.75.0 rust version, which is bad news, since the bug should be fixed in that. But it's still best...

Ok, I'm pretty convinced now that their fix is wrong. WaitforSingleObject should not be used on file handles, as for example indicated here https://stackoverflow.com/questions/775014/waitforsingleobject-on-a-file-handle File handles are also not listed...

Thanks, that confirms that I'm probably on the right path, and that the issue is indeed caused by invalid windows api usage in the rust standard library. I'm not sure...

That's ok. Note, that even testing the fix might be tricky, the installation from source has quite many dependencies to get right https://github.com/rust-lang/rust/blob/master/INSTALL.md. But I will probably start by modifying...

> > If this was a bug in rust you'd think this would happen a lot more to many more people. There seems to maybe be something specific to your...

@Zhniing, are you still on Windows 10 22H2? Can you give the exact version number? @thep0y, which version of Windows are you on? Also, if someone else has the same...

I think that information alone rules out a problem with specific Windows versions, since both the releases and Windows versions (10 vs 11) are totally different.