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.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/key_command/impl_appexecute.rs b/src/key_command/impl_appexecute.rs
index cd7aacc..65ef504 100644
--- a/src/key_command/impl_appexecute.rs
+++ b/src/key_command/impl_appexecute.rs
@@ -13,7 +13,10 @@ impl AppExecute for Command {
backend: &mut AppBackend,
keymap_t: &AppKeyMapping,
) -> JoshutoResult {
- match &*self {
+ match self {
+ Self::Escape => escape::escape(context),
+ Self::ToggleVisualMode => uimodes::toggle_visual_mode(context),
+
Self::BulkRename => bulk_rename::bulk_rename(context, backend),
Self::ChangeDirectory(p) => {