bop 0.1.0

Experimental editor infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate clap;
use clap::{Arg, App};

fn main() {
    let matches = App::new("bop")
                    .version("0.1")
                    .author("zypeh <zypeh.geek@gmail.com>")
                    .about("Experimental editor infrastructure")
                    .arg(Arg::with_name("config")
                               .short("c")
                               .long("config")
                               .value_name("TOML FILE")
                               .help("Sets a custom config file")
                               .takes_value(true))
                    .get_matches();

    //
}