aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/main.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-05-28 08:47:35 +0000
committerBlaž Hrastnik2020-05-28 08:47:35 +0000
commit6905ff03c29c9fc020a6333adf9e9d5004c3f3c5 (patch)
tree39b0a23ccafce90cc7c767cee5859c75666fd3d6 /helix-term/src/main.rs
parent1984410ac998ac5561f4a3de87d3d125f2f61178 (diff)
Start swapping from termwiz to crossterm + async.
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r--helix-term/src/main.rs8
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(())
}