znvim is a neovim remote rpc client implementation with zig
.
This package is under developing!
https://jinzhongjia.github.io/znvim/
- Implementation of multiple remote calling methods
- Support all neovim rpc channels
- Completely thread safe
- Asynchronous
- Add to
build.zig.zon
zig fetch --save https://github.com/jinzhongjia/znvim/archive/{commit or branch}.tar.gz
- Config
build.zig
const znvim = b.dependency("znvim", .{
.target = target,
.optimize = optimize,
});
// add module
exe.root_module.addImport("znvim", znvim.module("znvim"));
You can find example on test
fold!
Recommend to learn about what msgpack is (this lib uses zig-msgpack) and read neovim's API documentation.