enable shortcuts

This commit is contained in:
Ahmet Kilinc
2025-05-09 18:02:13 +01:00
parent f64558f0fa
commit fe6d58f1d4

View File

@@ -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',