Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r--helix-term/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs
index a3a27a07..516bfd7c 100644
--- a/helix-term/src/main.rs
+++ b/helix-term/src/main.rs
@@ -154,8 +154,7 @@ FLAGS:
});
// TODO: use the thread local executor to spawn the application task separately from the work pool
- let mut app =
- Application::new(args, config, lang_loader).context("unable to create new application")?;
+ let mut app = Application::new(args, config, lang_loader).context("unable to start Helix")?;
let exit_code = app.run(&mut EventStream::new()).await?;