Utkarsh Gupta
Utkarsh Gupta
I'm getting the same issue, but only in release mode. These are my settings: ```toml [profile.release] strip = "debuginfo" lto = "fat" panic = "unwind" codegen-units = 1 [profile.dev] opt-level...
v0.9 released with fix
I need it for pyright-lsp
Diffing suggests that the problem is that the node directory is no longer in the path. The node executable itself is working: ``` --- /nix/store/8vwczaxz6zwrmz0h316p0g70bmzdvrpa-neovim-0.10.2/bin/nvim 1970-01-01 01:00:01 +++ /nix/store/x0zc9p2i8rw9md182dyna25ya6m6n73n-neovim-0.10.2/bin/nvim 1970-01-01...
Yep, that fixes it.
> > As an initial fix, I think checking if there are enough bytes left and skipping makes sense. > > Is there any way to tell io-uring it should...
> Good point. The only thing I can think of is to tell it to switch well before you get close to the end. I think at that point I...
For a global config like this, I would say using [`LazyCell`](https://doc.rust-lang.org/std/cell/struct.LazyCell.html) is the way to go. `LazyCell` initializes the config on first use & returns it to all callers later...