From fe6d58f1d474e447061eb124c074df07d0d656d5 Mon Sep 17 00:00:00 2001 From: Ahmet Kilinc Date: Fri, 9 May 2025 18:02:13 +0100 Subject: [PATCH] enable shortcuts --- apps/mail/config/shortcuts.ts | 56 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/apps/mail/config/shortcuts.ts b/apps/mail/config/shortcuts.ts index 89e9588c3..d318d2496 100644 --- a/apps/mail/config/shortcuts.ts +++ b/apps/mail/config/shortcuts.ts @@ -112,34 +112,34 @@ const globalShortcuts: Shortcut[] = [ ]; const mailListShortcuts: Shortcut[] = [ - // { - // keys: ['r'], - // action: 'markAsRead', - // type: 'single', - // description: 'Mark as read', - // scope: 'mail-list', - // }, - // { - // keys: ['u'], - // action: 'markAsUnread', - // type: 'single', - // description: 'Mark as unread', - // scope: 'mail-list', - // }, - // { - // keys: ['m'], - // action: 'muteThread', - // type: 'single', - // description: 'Mute thread', - // scope: 'mail-list', - // }, - // { - // keys: ['e'], - // action: 'archiveEmail', - // type: 'single', - // description: 'Archive email', - // scope: 'mail-list', - // }, + { + keys: ['r'], + action: 'markAsRead', + type: 'single', + description: 'Mark as read', + scope: 'mail-list', + }, + { + keys: ['u'], + action: 'markAsUnread', + type: 'single', + description: 'Mark as unread', + scope: 'mail-list', + }, + { + keys: ['m'], + action: 'muteThread', + type: 'single', + description: 'Mute thread', + scope: 'mail-list', + }, + { + keys: ['e'], + action: 'archiveEmail', + type: 'single', + description: 'Archive email', + scope: 'mail-list', + }, { keys: ['escape'], action: 'exitSelectionMode',