mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-16 01:57:07 +00:00
044e10de1b
Changes imports statements to make imports more uniform.
72 lines
2.2 KiB
Rust
72 lines
2.2 KiB
Rust
// While adding out new module add out module to src/module.rs ALL_MODULES const array also.
|
|
mod aws;
|
|
mod character;
|
|
mod cmd_duration;
|
|
mod conda;
|
|
mod directory;
|
|
mod dotnet;
|
|
mod env_var;
|
|
mod git_branch;
|
|
mod git_state;
|
|
mod git_status;
|
|
mod golang;
|
|
mod hostname;
|
|
mod java;
|
|
mod jobs;
|
|
mod kubernetes;
|
|
mod line_break;
|
|
mod memory_usage;
|
|
mod nix_shell;
|
|
mod nodejs;
|
|
mod package;
|
|
mod python;
|
|
mod ruby;
|
|
mod rust;
|
|
mod time;
|
|
mod username;
|
|
|
|
#[cfg(feature = "battery")]
|
|
mod battery;
|
|
|
|
use crate::config::RootModuleConfig;
|
|
use crate::context::Context;
|
|
use crate::module::Module;
|
|
|
|
pub fn handle<'a>(module: &str, context: &'a Context) -> Option<Module<'a>> {
|
|
match module {
|
|
// Keep these ordered alphabetically.
|
|
// Default ordering is handled in configs/mod.rs
|
|
"aws" => aws::module(context),
|
|
#[cfg(feature = "battery")]
|
|
"battery" => battery::module(context),
|
|
"character" => character::module(context),
|
|
"cmd_duration" => cmd_duration::module(context),
|
|
"conda" => conda::module(context),
|
|
"directory" => directory::module(context),
|
|
"dotnet" => dotnet::module(context),
|
|
"env_var" => env_var::module(context),
|
|
"git_branch" => git_branch::module(context),
|
|
"git_state" => git_state::module(context),
|
|
"git_status" => git_status::module(context),
|
|
"golang" => golang::module(context),
|
|
"hostname" => hostname::module(context),
|
|
"java" => java::module(context),
|
|
"jobs" => jobs::module(context),
|
|
"kubernetes" => kubernetes::module(context),
|
|
"line_break" => line_break::module(context),
|
|
"memory_usage" => memory_usage::module(context),
|
|
"nix_shell" => nix_shell::module(context),
|
|
"nodejs" => nodejs::module(context),
|
|
"package" => package::module(context),
|
|
"python" => python::module(context),
|
|
"ruby" => ruby::module(context),
|
|
"rust" => rust::module(context),
|
|
"time" => time::module(context),
|
|
"username" => username::module(context),
|
|
_ => {
|
|
eprintln!("Error: Unknown module {}. Use starship module --list to list out all supported modules.", module);
|
|
None
|
|
}
|
|
}
|
|
}
|