navy-nvim-rs 0.0.14

A library for writing neovim rpc clients
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Examples on how to use [`nvim-rs`](crate).
//!
//! The code in question is in the `examples` directory of the project. The
//! files in `src/examples/` contain the documentation.
//!
//! # Contents
//!
//! ### `quitting`
//!
//! An example showing how to handle quitting in a plugin by catching a [`closed
//! channel`](crate::error::CallError::is_channel_closed).

pub mod quitting;