Skip to content

Commit baea2b5

Browse files
committed
Update keybind to Alt+Q
1 parent d0c8a86 commit baea2b5

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/zen/kbs/ZenKeyboardShortcuts.mjs

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -736,22 +736,15 @@ class ZenKeyboardShortcutsLoader {
736736
);
737737

738738
//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-
746739
newShortcutList.push(
747740
new KeyShortcut(
748741
'zen-search-tabs',
749-
'J',
742+
'Q',
750743
'',
751744
'searchAndFind',
752-
KeyShortcutModifiers.fromObject({ accel: true, alt: false }),
745+
KeyShortcutModifiers.fromObject({ accel: false, alt: true }),
753746
'cmd_zenSearchTabs',
754-
'zen-search-focus-shortcut-alt'
747+
'zen-search-shortcut-tabs'
755748
)
756749
);
757750

0 commit comments

Comments
 (0)