From 584b6d10f850ea0becd5460e7577a1ec97229e5c Mon Sep 17 00:00:00 2001 From: HE7086 Date: Tue, 6 Aug 2024 15:02:51 +0200 Subject: [PATCH] rustfmt --- yazi-core/src/tab/commands/shell.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yazi-core/src/tab/commands/shell.rs b/yazi-core/src/tab/commands/shell.rs index 064cc6dc..a9ac97ae 100644 --- a/yazi-core/src/tab/commands/shell.rs +++ b/yazi-core/src/tab/commands/shell.rs @@ -61,7 +61,8 @@ Please replace e.g. `shell` with `shell --interactive`, `shell "my-template"` wi tokio::spawn(async move { if !opt.confirm || opt.run.is_empty() { - let mut result = InputProxy::show(InputCfg::shell(opt.block).with_value(opt.run).with_cursor(cursor)); + let mut result = + InputProxy::show(InputCfg::shell(opt.block).with_value(opt.run).with_cursor(cursor)); match result.recv().await { Some(Ok(e)) => opt.run = e, _ => return,