Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/lib.rs')
| -rw-r--r-- | helix-term/src/lib.rs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs index d7f52785..891653f7 100644 --- a/helix-term/src/lib.rs +++ b/helix-term/src/lib.rs @@ -3,20 +3,5 @@ extern crate helix_view; pub mod application; pub mod args; -pub mod commands; pub mod config; pub mod health; -pub mod keymap; -pub mod ui; -pub use keymap::macros::*; - -#[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 -} |