default-editor 0.1.0

Get the default editor for the current environment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Default editor

Get the default editor for the current environment

## Usage

```rust
extern crate default_editor;

fn main () {
    match default_editor::get() {
        Ok(editor) => println!("The default editor is: {}", editor),
        Err(error) => println!("Error getting default editor: {}", error),
    }
}

```