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 f5af9175..e14a328f 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,8 +1,8 @@ #![allow(unused)] -mod editor; +mod application; -use editor::Editor; +use application::Application; use clap::{App, Arg}; use std::path::PathBuf; @@ -27,7 +27,7 @@ fn main() -> Result<(), Error> { } smol::block_on(EX.run(async { - editor::Editor::new(args).unwrap().run().await; + Application::new(args).unwrap().run().await; })); Ok(()) |