## vimvar-rs: Library to read neovim/vim variables from Rust [![Build Status][build_img]][build_lnk] [![Crates.io][crates_img]][crates_lnk] [![Docs.rs][doc_img]][doc_lnk] [build_img]: https://github.com/chipsenkbeil/vimvar-rs/workflows/CI/badge.svg [build_lnk]: https://github.com/chipsenkbeil/vimvar-rs/actions [crates_img]: https://img.shields.io/crates/v/vimvar.svg [crates_lnk]: https://crates.io/crates/vimvar [doc_img]: https://docs.rs/vimvar/badge.svg [doc_lnk]: https://docs.rs/vimvar --- ### Installation ```toml # Cargo.toml [dependencies] vimvar = "0.3" ``` ### Usage ```rust // Loads g:my_global_var from default vimrc, returning None if it does not // exist, and casting to type String from the default serde_json::Value // // Only fails unwrap if neovim/vim fails to run or type fails to cast let var: Option = vimvar::load_typed_global_var("my_global_var").unwrap(); println!("Loaded g:my_global_var = {:?}", var); ``` For more a more explicit example ```rust use vimvar::*; use serde_json::json; // Load explicitly a buffer variable (b:my_buffer_var) using neovim let var = VimVar::new(Cmd::NeoVim, Scope::Buffer, "my_buffer_var"); // Load the variable using a different config file versus the standard one let value = var.load_with_config("path/to/config.vim", false).expect("Failed to load variable"); assert_eq!(value, Some(json!("some buffer value"))); ``` ### License Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in vimvar by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.