2021-06-18 00:09:10 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate helix_view;
|
|
|
|
|
2021-06-07 06:40:21 +02:00
|
|
|
pub mod application;
|
|
|
|
pub mod args;
|
|
|
|
pub mod commands;
|
|
|
|
pub mod compositor;
|
2021-06-17 13:08:05 +02:00
|
|
|
pub mod config;
|
2021-06-28 14:48:38 +02:00
|
|
|
pub mod job;
|
2021-06-07 06:40:21 +02:00
|
|
|
pub mod keymap;
|
|
|
|
pub mod ui;
|
2021-11-14 13:26:48 +01:00
|
|
|
|
2021-12-03 04:41:13 +01:00
|
|
|
#[cfg(not(windows))]
|
2021-11-14 13:26:48 +01:00
|
|
|
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
|
|
|
|
}
|