aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorOmnikar2021-12-03 03:41:13 +0000
committerBlaž Hrastnik2021-12-13 15:48:45 +0000
commitcce34feb4e3f683db90b7bc37eead4c460e7904b (patch)
treede7e1d5db5317c56b1bf792f53e741c5c68a0e3d /helix-term
parent42e6d96a75c743c2fa8da6c8a0587487b3c21bf0 (diff)
Assume true color support on Windows
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs
index 4fe76cd5..58cb139c 100644
--- a/helix-term/src/lib.rs
+++ b/helix-term/src/lib.rs
@@ -10,8 +10,13 @@ pub mod job;
pub mod keymap;
pub mod ui;
+#[cfg(not(windows))]
fn true_color() -> bool {
std::env::var("COLORTERM")
.map(|v| matches!(v.as_str(), "truecolor" | "24bit"))
.unwrap_or(false)
}
+#[cfg(windows)]
+fn true_color() -> bool {
+ true
+}