neovim-lib
neovim-lib copied to clipboard
Rust library for Neovim clients
```rust no method named `open_win` found for struct `neovim_lib::Neovim` in the current scope method not found in `neovim_lib::Neovim` rustc(E0599) main.rs(12, 8): method not found in `neovim_lib::Neovim` ``` ```toml [dependencies] neovim-lib...
What about moving the repo under the `neovim` namespace? It is an organization, so you will retain the same access, while increasing the repository visibility. They host libraries/clients for another...
Here's the stacktrace: ```[Neocord] ERR (channel 3/stderr): Backtrace (most recent call first): [Neocord] ERR (channel 3/stderr): File "rust:src/libcore/macros/mod.rs", line 15, in core::option::Option::unwrap File "/Users/prismarine/.cargo/registry/src/github.com-1ecc6299db9ec823/neovim-lib-0.6.1/src/rpc/client.rs", line 292, in neovim_lib::rpc::client::find_sender let pos...
Now that it's available on stable, it seems like a premier way of solving https://github.com/daa84/neovim-lib/pull/23. Do you have any plans regarding that? I've thought a bit about it, and it...
As Unix sockets are supported, I feel the library should support Windows named pipes too, as that is the default listen mechanisms of the windows edition of neovim.
Hey! I've run into a race condition with neovim-lib: If we recieve a `Request`, then the handler for that request blocks the iO thread (I'm calling it the iO thread,...
https://medium.com/@srishanbhattarai/a-detailed-guide-to-writing-your-first-neovim-plugin-in-rust-a81604c606b1 is a good starting point for people wanting to use this library. Maybe you want to link it somewhere :)
Here's my first completely useless neovim plugin\[[1]] in Rust! I've been using it to test/dictate the design choices in my patches for neovim-lib. It relies on PR #4 and another...