helix-mods/helix-term/src/lib.rs

23 lines
391 B
Rust
Raw Normal View History

#[macro_use]
extern crate helix_view;
pub mod application;
pub mod args;
pub mod commands;
pub mod compositor;
pub mod config;
2021-06-28 14:48:38 +02:00
pub mod job;
pub mod keymap;
pub mod ui;
2021-12-03 04:41:13 +01:00
#[cfg(not(windows))]
fn true_color() -> bool {
std::env::var("COLORTERM")
.map(|v| matches!(v.as_str(), "truecolor" | "24bit"))
.unwrap_or(false)
}
2021-12-03 04:41:13 +01:00
#[cfg(windows)]
fn true_color() -> bool {
true
}