summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSharif Haason <ssh128@scarletmail.rutgers.edu>2022-12-07 16:48:20 -0500
committerSharif Haason <ssh128@scarletmail.rutgers.edu>2022-12-07 16:48:20 -0500
commitcf8e7ec07911a936ae528110465921a9d14796fd (patch)
treec55540812be2ef0f90d36c9633b7ceff47a2f116 /src
parentfaa9866d1149e48f837076db1d6f9b7dd70df21c (diff)
Revert default color option to always
Diffstat (limited to 'src')
-rw-r--r--src/bin/hexyl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/hexyl.rs b/src/bin/hexyl.rs
index 798df62..0e90b5b 100644
--- a/src/bin/hexyl.rs
+++ b/src/bin/hexyl.rs
@@ -104,7 +104,7 @@ fn run() -> Result<()> {
.value_name("WHEN")
.value_parser(["always", "auto", "never"])
.default_value_if("plain", ArgPredicate::IsPresent, Some("never"))
- .default_value("auto")
+ .default_value("always")
.help(
"When to use colors. The auto-mode only displays colors if the output \
goes to an interactive terminal",