summaryrefslogtreecommitdiffstats
path: root/src/key_command/impl_appexecute.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/key_command/impl_appexecute.rs')
-rw-r--r--src/key_command/impl_appexecute.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/key_command/impl_appexecute.rs b/src/key_command/impl_appexecute.rs
index 4f4d346..1786e96 100644
--- a/src/key_command/impl_appexecute.rs
+++ b/src/key_command/impl_appexecute.rs
@@ -53,7 +53,14 @@ impl AppExecute for Command {
Self::DeleteFiles {
background,
permanently,
- } => delete_files::delete_selected_files(context, backend, *background, *permanently),
+ noconfirm,
+ } => delete_files::delete_selected_files(
+ context,
+ backend,
+ *background,
+ *permanently,
+ *noconfirm,
+ ),
Self::CursorMoveUp { offset } => cursor_move::up(context, *offset),
Self::CursorMoveDown { offset } => cursor_move::down(context, *offset),