2021-06-18 06:09:10 +08:00
|
|
|
#[macro_use]
|
|
|
|
extern crate helix_view;
|
|
|
|
|
2021-06-07 12:40:21 +08:00
|
|
|
pub mod application;
|
|
|
|
pub mod args;
|
|
|
|
pub mod commands;
|
|
|
|
pub mod compositor;
|
2021-06-17 19:08:05 +08:00
|
|
|
pub mod config;
|
2022-03-08 13:25:46 +08:00
|
|
|
pub mod health;
|
2021-06-28 20:48:38 +08:00
|
|
|
pub mod job;
|
2021-06-07 12:40:21 +08:00
|
|
|
pub mod keymap;
|
|
|
|
pub mod ui;
|
2021-11-14 20:26:48 +08:00
|
|
|
|
2021-12-03 11:41:13 +08:00
|
|
|
#[cfg(not(windows))]
|
2021-11-14 20:26:48 +08:00
|
|
|
fn true_color() -> bool {
|
|
|
|
std::env::var("COLORTERM")
|
|
|
|
.map(|v| matches!(v.as_str(), "truecolor" | "24bit"))
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
2021-12-03 11:41:13 +08:00
|
|
|
#[cfg(windows)]
|
|
|
|
fn true_color() -> bool {
|
|
|
|
true
|
|
|
|
}
|