Skip to content

Commit ee0ef37

Browse files
author
Jackson Kearl
committed
1 parent b9d44e8 commit ee0ef37

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/vs/workbench/contrib/searchEditor/browser/searchEditor.contribution.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,17 +156,15 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
156156
weight: KeybindingWeight.WorkbenchContrib,
157157
when: ContextKeyExpr.and(SearchEditorConstants.InSearchEditor),
158158
handler: (accessor: ServicesAccessor) => modifySearchEditorContextLinesCommand(accessor, true),
159-
primary: KeyMod.Alt | KeyCode.KEY_L,
160-
mac: { primary: KeyMod.Alt | KeyCode.US_EQUAL }
159+
primary: KeyMod.Alt | KeyCode.US_EQUAL
161160
});
162161

163162
KeybindingsRegistry.registerCommandAndKeybindingRule({
164163
id: SearchEditorConstants.DecreaseSearchEditorContextLinesCommandId,
165164
weight: KeybindingWeight.WorkbenchContrib,
166165
when: ContextKeyExpr.and(SearchEditorConstants.InSearchEditor),
167166
handler: (accessor: ServicesAccessor) => modifySearchEditorContextLinesCommand(accessor, false),
168-
primary: KeyMod.Alt | KeyCode.KEY_L,
169-
mac: { primary: KeyMod.Alt | KeyCode.US_MINUS }
167+
primary: KeyMod.Alt | KeyCode.US_MINUS
170168
});
171169

172170
KeybindingsRegistry.registerCommandAndKeybindingRule({

0 commit comments

Comments
 (0)