mirror of
https://github.com/zen-browser/components.git
synced 2025-07-07 21:19:57 +02:00
Update ZenKeyboardShortcuts.mjs
This commit is contained in:
parent
d850d774c0
commit
e42847a6c3
1 changed files with 15 additions and 3 deletions
|
@ -751,13 +751,25 @@ function zenGetDefaultShortcuts() {
|
|||
// Open Settings
|
||||
newShortcutList.push(
|
||||
new KeyShortcut(
|
||||
'zen-next-tab',
|
||||
'zen-open-settings',
|
||||
',',
|
||||
'',
|
||||
ZEN_OTHER_SHORTCUTS_GROUP,
|
||||
KeyShortcutModifiers.fromObject({ accel: true }),
|
||||
"code:gBrowser.tabContainer.advanceSelectedTab(1, true);",
|
||||
'zen-shortcut-next-tab'
|
||||
"code:openPreferences(undefined);",
|
||||
'zen-shortcut-open-settings'
|
||||
)
|
||||
);
|
||||
// Open CKS Settings
|
||||
newShortcutList.push(
|
||||
new KeyShortcut(
|
||||
'zen-cks-settings',
|
||||
'/',
|
||||
'',
|
||||
ZEN_OTHER_SHORTCUTS_GROUP,
|
||||
KeyShortcutModifiers.fromObject({ accel: true }),
|
||||
"code:openPreferences('paneZenCKS');",
|
||||
'zen-shortcut-cks-settings'
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue