diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 1 |
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()?; |