Skip to content

Commit 7524e9d

Browse files
authored
Change tree find keybinding to ctrl+alt+f (microsoft#210634)
1 parent 47e4d24 commit 7524e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/actions/listCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
805805
id: 'list.find',
806806
weight: KeybindingWeight.WorkbenchContrib,
807807
when: ContextKeyExpr.and(RawWorkbenchListFocusContextKey, WorkbenchListSupportsFind),
808-
primary: KeyMod.CtrlCmd | KeyCode.KeyF,
808+
primary: KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.KeyF,
809809
secondary: [KeyCode.F3],
810810
handler: (accessor) => {
811811
const widget = accessor.get(IListService).lastFocusedList;

0 commit comments

Comments
 (0)