Add forward messages shortcut, remap open stickers
This commit is contained in:
parent
5773c7bc9a
commit
a7a058bb73
4 changed files with 37 additions and 2 deletions
|
@ -30,6 +30,7 @@ type KeyType =
|
|||
| 'D'
|
||||
| 'E'
|
||||
| 'F'
|
||||
| 'G'
|
||||
| 'J'
|
||||
| 'L'
|
||||
| 'M'
|
||||
|
@ -130,7 +131,7 @@ function getNavigationShortcuts(i18n: LocalizerType): Array<ShortcutType> {
|
|||
{
|
||||
id: 'Keyboard--open-sticker-chooser',
|
||||
description: i18n('icu:Keyboard--open-sticker-chooser'),
|
||||
keys: [['commandOrCtrl', 'shift', 'S']],
|
||||
keys: [['commandOrCtrl', 'shift', 'G']],
|
||||
},
|
||||
{
|
||||
id: 'Keyboard--begin-recording-voice-note',
|
||||
|
@ -197,6 +198,11 @@ function getMessageShortcuts(i18n: LocalizerType): Array<ShortcutType> {
|
|||
description: i18n('icu:Keyboard--delete-messages'),
|
||||
keys: [['commandOrCtrl', 'shift', 'D']],
|
||||
},
|
||||
{
|
||||
id: 'Keyboard--forward-messages',
|
||||
description: i18n('icu:Keyboard--forward-messages'),
|
||||
keys: [['commandOrCtrl', 'shift', 'S']],
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue