A simple set of functions to create and edit individual Rust Strings with VIM.
May support more options and features in the near future.
Cargo.toml
[dependencies]
vim_edit = "0.1.0"
main.rs ``` use vimedit::{vimcreate, vim_edit}
fn main() { let mut ourinput: String = vimcreate(); println!("You created in vim: {}", ourinput); ourinput = vimedit(ourinput); println!("Final edited value is: {}", our_input) }