mirror of
https://github.com/zen-browser/components.git
synced 2025-07-07 23:59:59 +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
|
// Open Settings
|
||||||
newShortcutList.push(
|
newShortcutList.push(
|
||||||
new KeyShortcut(
|
new KeyShortcut(
|
||||||
'zen-next-tab',
|
'zen-open-settings',
|
||||||
',',
|
',',
|
||||||
'',
|
'',
|
||||||
ZEN_OTHER_SHORTCUTS_GROUP,
|
ZEN_OTHER_SHORTCUTS_GROUP,
|
||||||
KeyShortcutModifiers.fromObject({ accel: true }),
|
KeyShortcutModifiers.fromObject({ accel: true }),
|
||||||
"code:gBrowser.tabContainer.advanceSelectedTab(1, true);",
|
"code:openPreferences(undefined);",
|
||||||
'zen-shortcut-next-tab'
|
'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