Files
starship/src/main.rs
T

66 lines
1.8 KiB
Rust
Raw Normal View History

2019-04-01 23:23:03 -04:00
#[macro_use]
extern crate clap;
2019-04-08 23:35:14 -04:00
2019-06-10 15:56:17 +01:00
mod config;
2019-04-19 16:57:14 -04:00
mod context;
2019-05-01 16:34:24 -04:00
mod module;
2019-04-03 20:14:26 -04:00
mod modules;
mod print;
2019-04-12 17:49:20 -04:00
mod segment;
2019-06-10 15:56:17 +01:00
mod utils;
2019-04-03 20:14:26 -04:00
2019-06-06 13:18:00 +01:00
use clap::{App, Arg, SubCommand};
2019-04-02 00:45:49 -04:00
2019-04-01 23:23:03 -04:00
fn main() {
2019-05-13 22:43:11 -06:00
pretty_env_logger::init();
let status_code_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);
let path_arg = Arg::with_name("path")
.short("p")
.long("path")
.value_name("PATH")
.help("The path that the prompt should render for")
.takes_value(true);
2019-06-06 13:18:00 +01:00
let matches = App::new("Starship")
2019-04-13 00:33:50 -04:00
.about("The cross-shell prompt for astronauts. ✨🚀")
2019-04-01 23:30:53 -04:00
// pull the version number from Cargo.toml
.version(crate_version!())
// pull the authors from Cargo.toml
.author(crate_authors!())
2019-04-03 20:14:26 -04:00
.after_help("https://github.com/matchai/starship")
2019-06-06 13:18:00 +01:00
.subcommand(
SubCommand::with_name("prompt")
.about("Prints the full starship prompt")
.arg(&status_code_arg)
.arg(&path_arg),
2019-06-06 13:18:00 +01:00
)
.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(&status_code_arg)
.arg(&path_arg),
2019-04-03 22:57:50 -04:00
)
2019-04-01 23:30:53 -04:00
.get_matches();
2019-04-02 00:45:49 -04:00
2019-06-06 13:18:00 +01:00
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());
}
_ => {}
}
2019-04-01 23:23:03 -04:00
}