diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index e21fc7d7..9a09e8c7 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,10 +1,11 @@ +#![allow(unused)] // mod editor; mod component; // use editor::Editor; use argh::FromArgs; -use std::{env, path::PathBuf}; +use std::path::PathBuf; use anyhow::Error; |