From ec76fafff08933f6f31fb99ea974bdb5ae97a0af Mon Sep 17 00:00:00 2001 From: Zhenhui Xie Date: Wed, 8 Jul 2020 06:45:32 +0800 Subject: feat: refactor modules to use format strings (#1374) --- src/configs/python.rs | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'src/configs/python.rs') diff --git a/src/configs/python.rs b/src/configs/python.rs index 2b9aa4158..1c51e15b3 100644 --- a/src/configs/python.rs +++ b/src/configs/python.rs @@ -1,30 +1,27 @@ -use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig}; +use crate::config::{ModuleConfig, RootModuleConfig}; -use ansi_term::{Color, Style}; use starship_module_config_derive::ModuleConfig; #[derive(Clone, ModuleConfig)] pub struct PythonConfig<'a> { - pub symbol: SegmentConfig<'a>, - pub version: SegmentConfig<'a>, - pub pyenv_prefix: SegmentConfig<'a>, pub pyenv_version_name: bool, pub python_binary: &'a str, pub scan_for_pyfiles: bool, - pub style: Style, + pub format: &'a str, + pub style: &'a str, + pub symbol: &'a str, pub disabled: bool, } impl<'a> RootModuleConfig<'a> for PythonConfig<'a> { fn new() -> Self { PythonConfig { - symbol: SegmentConfig::new("🐍 "), - version: SegmentConfig::default(), - pyenv_prefix: SegmentConfig::new("pyenv "), pyenv_version_name: false, python_binary: "python", scan_for_pyfiles: true, - style: Color::Yellow.bold(), + format: "via [$symbol$version( \\($virtualenv\\))]($style) ", + style: "yellow bold", + symbol: "🐍 ", disabled: false, } } -- cgit v1.2.3