Enhance super tab
This commit is contained in:
parent
8761bb8dae
commit
052aca3119
8 changed files with 69 additions and 60 deletions
|
@ -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'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue