#vim #temporary-files #cli #edit #string #vim-create

vim_edit

A simple set of Rust functions to create or edit strings or files in vim from the CLI

2 releases

0.1.1 Jan 19, 2021
0.1.0 May 2, 2020

#1251 in Filesystem

Download history 19/week @ 2024-01-22 16/week @ 2024-01-29 45/week @ 2024-02-12 168/week @ 2024-02-19 72/week @ 2024-02-26 97/week @ 2024-03-04 103/week @ 2024-03-11 128/week @ 2024-03-18 124/week @ 2024-03-25 157/week @ 2024-04-01 90/week @ 2024-04-08 80/week @ 2024-04-15

469 downloads per month

MIT license

4KB

VIM Edit

GitHub Workflow Status Crates.io Crates.io

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–11MB
~114K SLoC