File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/searchEditor/browser Expand file tree Collapse file tree Original file line number Diff line number Diff 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
163162KeybindingsRegistry . 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
172170KeybindingsRegistry . registerCommandAndKeybindingRule ( {
You can’t perform that action at this time.
0 commit comments