diff options
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index d6c6c499..66ed5d2d 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -23,7 +23,6 @@ static EX: smol::Executor = smol::Executor::new(); fn main() -> Result<(), Error> { let args: Args = argh::from_env(); - println!("{:?}", args.files); for _ in 0..num_cpus::get() { std::thread::spawn(move || smol::block_on(EX.run(smol::future::pending::<()>()))); |