editor-input 0.1.0

User input from $EDITOR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
editor-input
============

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

Example
-------

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