nvim-rs 0.9.2

A library for writing neovim rpc clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::{
  env, path::PathBuf,
};

fn main() {
  println!(
    "cargo:rustc-env=EXAMPLES_PATH={}",
    PathBuf::from(env::var("OUT_DIR").unwrap())
    .join("../../../examples")
    .to_str()
    .unwrap()
  );
}