1 2 3 4 5 6 7 8 9 10 11 12
//! # rsnvim //! //! `rsnvim` is a crate used to interact with Neovim's API via Rust. pub mod api; pub mod client; pub mod error; pub mod handler; pub mod rpc; pub mod session; #[cfg(test)] mod tests {}