summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/bin/bat/app.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/bat/app.rs b/src/bin/bat/app.rs
index b9992b49..a25e41d2 100644
--- a/src/bin/bat/app.rs
+++ b/src/bin/bat/app.rs
@@ -169,7 +169,8 @@ impl App {
|| match self.matches.value_of("color") {
Some("always") => true,
Some("never") => false,
- _ => env::var_os("NO_COLOR").is_none() && self.interactive_output,
+ Some("auto") => env::var_os("NO_COLOR").is_none() && self.interactive_output,
+ _ => unreachable!("other values for --color are not allowed"),
},
paging_mode,
term_width: maybe_term_width.unwrap_or(Term::stdout().size().1 as usize),