We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0c8a86 commit baea2b5Copy full SHA for baea2b5
src/zen/kbs/ZenKeyboardShortcuts.mjs
@@ -736,22 +736,15 @@ class ZenKeyboardShortcutsLoader {
736
);
737
738
//tabs search
739
- {
740
- const index = newShortcutList.findIndex(item => item.getID() === 'key_search2');
741
- if (index !== -1) {
742
- newShortcutList.splice(index, 1);
743
- }
744
745
-
746
newShortcutList.push(
747
new KeyShortcut(
748
'zen-search-tabs',
749
- 'J',
+ 'Q',
750
'',
751
'searchAndFind',
752
- KeyShortcutModifiers.fromObject({ accel: true, alt: false }),
+ KeyShortcutModifiers.fromObject({ accel: false, alt: true }),
753
'cmd_zenSearchTabs',
754
- 'zen-search-focus-shortcut-alt'
+ 'zen-search-shortcut-tabs'
755
)
756
757
0 commit comments