navy-nvim-rs 0.0.21

A library for writing neovim rpc clients
1
2
3
4
5
6
7
8
9
10
11
//! RPC functionality for [`neovim`](crate::neovim::Neovim)
//!
//! For most plugins, the main implementation work will consist of defining and
//! implementing the [`handler`](crate::rpc::handler::Handler).
pub mod decode;
pub mod encode;
pub mod handler;
pub mod payload;
mod skip;

pub use rmpv::{Value, ValueRef};