We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eff652 commit 4473a61Copy full SHA for 4473a61
src/utils.rs
@@ -22,7 +22,7 @@ fn default_colors_enabled(out: &Term) -> bool {
22
23
let no_color_enabled = match env::var("NO_COLOR") {
24
Ok(val) => val.to_lowercase() != "0" && val.to_lowercase() != "false",
25
- Err(_) => false, // Dacă variabila nu este setată, presupunem că nu este activată
+ Err(_) => false,
26
};
27
28
(clicolor_enabled && !no_color_enabled)
0 commit comments