summaryrefslogtreecommitdiff
path: root/helix-term/src/main.rs
diff options
context:
space:
mode:
authorJan Hrastnik2020-06-05 10:21:27 +0000
committerBlaž Hrastnik2020-06-16 08:42:34 +0000
commit2985398adca2d790d72c60bad9f0e841829fdebc (patch)
tree32a5368e7be70719191ef47b63b3a2f78ca3873c /helix-term/src/main.rs
parent19643446cd2d5911b56af6f52f0f40da39a14109 (diff)
loop is now async
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r--helix-term/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs
index 11c700e7..1e90d4a2 100644
--- a/helix-term/src/main.rs
+++ b/helix-term/src/main.rs
@@ -20,6 +20,7 @@ pub struct Args {
fn main() -> Result<(), Error> {
let args: Args = argh::from_env();
+ println!("{:?}", args.files);
editor::Editor::run()?;