jinzhongjia/znvim
neovim remote rpc client implementation with zig
znvim is a neovim remote rpc client implementation with zig
.
This package is under developing!
https://jinzhongjia.github.io/znvim/
0.12.0
/ 0.13.0
/ master
build.zig.zon
zig fetch --save https://github.com/jinzhongjia/znvim/archive/{commit or branch}.tar.gz
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.