editor-input 0.1.0

User input from $EDITOR
Documentation

editor-input

A simple library containing a method for accepting input from the editor specified by the $EDITOR environment variable (like git does).

Example

fn main() {
    println!("{}", editor_input::input_from_editor("placeholder text").unwrap());
}