1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-16 01:57:07 +00:00
starship/src/modules/mod.rs

22 lines
660 B
Rust
Raw Normal View History

2019-04-05 01:35:24 +00:00
mod character;
2019-04-05 00:35:35 +00:00
mod directory;
mod line_break;
2019-04-10 13:22:11 +00:00
mod nodejs;
2019-04-04 00:14:26 +00:00
2019-04-12 21:49:20 +00:00
use crate::segment::Segment;
2019-04-05 01:35:24 +00:00
use clap::ArgMatches;
2019-04-04 16:18:02 +00:00
2019-04-11 23:31:30 +00:00
// pub static current_dir: PathBuf = env::current_dir().expect("Unable to identify current directory");
// TODO: Currently gets the physical directory. Get the logical directory.
2019-04-13 03:06:48 +00:00
pub fn handle(module: &str, args: &ArgMatches) -> Option<Segment> {
2019-04-04 00:14:26 +00:00
match module {
2019-04-05 00:35:35 +00:00
"dir" | "directory" => directory::segment(&args),
2019-04-10 13:22:11 +00:00
"char" | "character" => character::segment(&args),
"node" | "nodejs" => nodejs::segment(&args),
2019-04-05 00:35:35 +00:00
"line_break" => line_break::segment(&args),
2019-04-04 00:14:26 +00:00
_ => panic!("Unknown module: {}", module),
}
}