1 unstable release

0.1.0 Jul 22, 2020

#24 in #opening

24 downloads per month

GPL-3.0 license

14KB
59 lines

open-file

crates.io docs.rs

Opening file in editor

Usage

use open_file;

fn main() {
    open_file::open(String::from("Cargo.toml"), Some(String::from("kate")));
}

lib.rs:

Opening file in editor

Usage

extern crate open_file;

fn main() {
    open_file::open(String::from("Cargo.toml"), Some(String::from("kate")));
}

No runtime deps