2 releases
0.1.1 | Jan 19, 2021 |
---|---|
0.1.0 | May 2, 2020 |
#1339 in Filesystem
56 downloads per month
4KB
VIM Edit
A simple set of functions to create and edit individual Rust Strings with VIM.
May support more options and features in the near future.
Example
Cargo.toml
[dependencies]
vim_edit = "0.1.0"
main.rs
use vim_edit::{vim_create, vim_edit}
fn main() {
let mut our_input: String = vim_create();
println!("You created in vim: {}", our_input);
our_input = vim_edit(our_input);
println!("Final edited value is: {}", our_input)
}
Dependencies
~2–10MB
~110K SLoC