diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 6a04bdb7..11c700e7 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,9 +1,10 @@ #![allow(unused)] // mod editor; // mod component; +mod editor; mod keymap; -// use editor::Editor; +use editor::Editor; use argh::FromArgs; use std::path::PathBuf; @@ -19,9 +20,8 @@ pub struct Args { fn main() -> Result<(), Error> { let args: Args = argh::from_env(); - // let mut editor = Editor::new(args)?; - // editor.run()?; + editor::Editor::run()?; Ok(()) } |