diff --git a/docs/config/README.md b/docs/config/README.md index 7e95048b3..75c48afa4 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -838,7 +838,7 @@ The module will be shown if any of the following conditions are met: | Variable | Default | Description | | ---------- | ------------- | -------------------------------------------------------- | -| `symbol` | `"∴ "` | The symbol used before displaying the version of Julia. | +| `symbol` | `"ஃ "` | The symbol used before displaying the version of Julia. | | `style` | `"bold purple"` | The style for the module. | | `disabled` | `false` | Disables the `julia` module. | @@ -848,7 +848,7 @@ The module will be shown if any of the following conditions are met: # ~/.config/starship.toml [julia] -symbol = "👸 " +symbol = "∴ " ``` ## Kubernetes diff --git a/src/configs/julia.rs b/src/configs/julia.rs index 47b322582..ff36d6cf7 100644 --- a/src/configs/julia.rs +++ b/src/configs/julia.rs @@ -14,7 +14,7 @@ pub struct JuliaConfig<'a> { impl<'a> RootModuleConfig<'a> for JuliaConfig<'a> { fn new() -> Self { JuliaConfig { - symbol: SegmentConfig::new("∴ "), + symbol: SegmentConfig::new("ஃ "), version: SegmentConfig::default(), style: Color::Purple.bold(), disabled: false, diff --git a/src/modules/julia.rs b/src/modules/julia.rs index aaf58bf70..7d395254b 100644 --- a/src/modules/julia.rs +++ b/src/modules/julia.rs @@ -75,7 +75,7 @@ mod tests { let actual = render_module("julia", dir.path()); - let expected = Some(format!("via {} ", Color::Purple.bold().paint("∴ v1.4.0"))); + let expected = Some(format!("via {} ", Color::Purple.bold().paint("ஃ v1.4.0"))); assert_eq!(expected, actual); dir.close() } @@ -87,7 +87,7 @@ mod tests { let actual = render_module("julia", dir.path()); - let expected = Some(format!("via {} ", Color::Purple.bold().paint("∴ v1.4.0"))); + let expected = Some(format!("via {} ", Color::Purple.bold().paint("ஃ v1.4.0"))); assert_eq!(expected, actual); dir.close() } @@ -99,7 +99,7 @@ mod tests { let actual = render_module("julia", dir.path()); - let expected = Some(format!("via {} ", Color::Purple.bold().paint("∴ v1.4.0"))); + let expected = Some(format!("via {} ", Color::Purple.bold().paint("ஃ v1.4.0"))); assert_eq!(expected, actual); dir.close() }