According by this standards
> While "Julia" is a female name in many parts of the world, the programming language is not a person and does not have a gender.
This commit is contained in:
Shu Kutsuzawa
2020-04-07 18:07:51 +09:00
committed by GitHub
parent b01b498b9e
commit 2f449af680
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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,
+3 -3
View File
@@ -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()
}