Enhance super tab

This commit is contained in:
Josh Perez 2023-05-09 11:52:03 -04:00 committed by GitHub
parent 8761bb8dae
commit 052aca3119
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 69 additions and 60 deletions

View file

@ -23,6 +23,7 @@ type KeyType =
| 'enter'
| 'tab'
| 'ctrl'
| 'F6'
| '↑'
| '↓'
| ','
@ -60,7 +61,10 @@ function getNavigationShortcuts(i18n: LocalizerType): Array<ShortcutType> {
{
id: 'Keyboard--navigate-by-section',
description: i18n('icu:Keyboard--navigate-by-section'),
keys: [['commandOrCtrl', 'T']],
keys: [
['commandOrCtrl', 'T'],
['commandOrCtrl', 'F6'],
],
},
{
id: 'Keyboard--previous-conversation',
@ -93,6 +97,11 @@ function getNavigationShortcuts(i18n: LocalizerType): Array<ShortcutType> {
description: i18n('icu:Keyboard--conversation-by-index'),
keys: [['commandOrCtrl', '1 to 9']],
},
{
id: 'Keyboard--most-recent-message',
description: i18n('icu:Keyboard--focus-most-recent-message'),
keys: [['commandOrCtrl', 'J']],
},
{
id: 'Keyboard--preferences',
description: i18n('icu:Keyboard--preferences'),