diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 9dfa3767..aaa83a86 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,6 +1,6 @@ -mod editor; +// mod editor; -use editor::Editor; +// use editor::Editor; use argh::FromArgs; use std::{env, path::PathBuf}; @@ -16,9 +16,9 @@ pub struct Args { fn main() -> Result<(), Error> { let args: Args = argh::from_env(); - let mut editor = Editor::new(args)?; + // let mut editor = Editor::new(args)?; - editor.run()?; + // editor.run()?; Ok(()) } |