summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 4707cd816fb56900126373e8b72f9d5c06027fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#[macro_use]
extern crate clap;

mod context;
mod module;
mod modules;
mod print;
mod segment;

use clap::{App, Arg, SubCommand};

fn main() {
    pretty_env_logger::init();

    let matches = App::new("Starship")
        .about("The cross-shell prompt for astronauts. ✨🚀")
        // pull the version number from Cargo.toml
        .version(crate_version!())
        // pull the authors from Cargo.toml
        .author(crate_authors!())
        .after_help("https://github.com/matchai/starship")
        .subcommand(
            SubCommand::with_name("prompt")
                .about("Prints the full starship prompt")
                .arg(
                    Arg::with_name("status_code")
                        .short("s")
                        .long("status")
                        .value_name("STATUS_CODE")
                        .help("The status code of the previously run command")
                        .takes_value(true),
                )
                .arg(
                    Arg::with_name("path")
                        .short("p")
                        .long("path")
                        .value_name("PATH")
                        .help("The path that the prompt should render for ($PWD by default)")
                        .takes_value(true),
                ),
        )
        .subcommand(
            SubCommand::with_name("module")
                .about("Prints a specific prompt module")
                .arg(
                    Arg::with_name("name")
                        .help("The name of the module to be printed")
                        .required(true),
                )
                .arg(
                    Arg::with_name("status_code")
                        .short("s")
                        .long("status")
                        .value_name("STATUS_CODE")
                        .help("The status code of the previously run command")
                        .takes_value(true),
                )
                .arg(
                    Arg::with_name("path")
                        .short("p")
                        .long("path")
                        .value_name("PATH")
                        .help("The path the prompt should render for ($PWD by default)")
                        .takes_value(true),
                ),
        )
        .get_matches();

    match matches.subcommand() {
        ("prompt", Some(sub_m)) => print::prompt(sub_m.clone()),
        ("module", Some(sub_m)) => {
            let module_name = sub_m.value_of("name").expect("Module name missing.");
            print::module(module_name, sub_m.clone());
        }
        _ => {}
    }
}