17 releases

Uses old Rust 2015

0.6.1 Apr 12, 2019
0.6.0 Jan 27, 2019
0.5.4 Aug 10, 2018
0.5.3 Jun 13, 2018
0.1.0 Mar 15, 2016

#2 in #messagepack-rpc

Download history 155/week @ 2024-07-21 155/week @ 2024-07-28 165/week @ 2024-08-04 226/week @ 2024-08-11 147/week @ 2024-08-18 158/week @ 2024-08-25 158/week @ 2024-09-01 136/week @ 2024-09-08 150/week @ 2024-09-15 187/week @ 2024-09-22 117/week @ 2024-09-29 200/week @ 2024-10-06 108/week @ 2024-10-13 113/week @ 2024-10-20 127/week @ 2024-10-27 152/week @ 2024-11-03

510 downloads per month
Used in 7 crates

LGPL-3.0

105KB
2.5K SLoC

neovim-lib

Rust library for Neovim msgpack-rpc clients.

Linux build Windows build

Where to start


lib.rs:

Rust library for Neovim clients

Implements support for rust plugins for Neovim through its msgpack-rpc API.

Examples

Simple use case

use neovim_lib::{Neovim, NeovimApi, Session};

let mut session = Session::new_tcp("127.0.0.1:6666").unwrap();
session.start_event_loop();
let mut nvim = Neovim::new(session);

let buffers = nvim.list_bufs().unwrap();
buffers[0].set_lines(&mut nvim, 0, 0, true, vec!["replace first line".to_owned()]).unwrap();
nvim.command("vsplit").unwrap();
let windows = nvim.list_wins().unwrap();
windows[0].set_width(&mut nvim, 10).unwrap();

Process notify events from neovim

use neovim_lib::{Neovim, NeovimApi, Session};
let mut session = Session::new_tcp("127.0.0.1:6666").unwrap();
let receiver = session.start_event_loop_channel();
let mut nvim = Neovim::new(session);

let (event_name, args) = receiver.recv().unwrap();

Dependencies

~0.6–1MB
~21K SLoC