@@ -403,8 +403,8 @@ registerAction2(class FocusNextSearchResultAction extends Action2 {
403
403
primary : KeyCode . F4 ,
404
404
weight : KeybindingWeight . WorkbenchContrib ,
405
405
} ] ,
406
- category : category . value ,
407
-
406
+ category : category ,
407
+ f1 : true ,
408
408
precondition : ContextKeyExpr . or ( Constants . HasSearchResults , SearchEditorConstants . InSearchEditor ) ,
409
409
} ) ;
410
410
}
@@ -419,15 +419,15 @@ registerAction2(class FocusPreviousSearchResultAction extends Action2 {
419
419
super ( {
420
420
id : Constants . FocusPreviousSearchResultActionId ,
421
421
title : {
422
- value : nls . localize ( 'FocusPreviousSearchResult.label' , 'Search: Focus Previous Search Result' ) ,
423
- original : 'Search: Focus Previous Search Result'
422
+ value : nls . localize ( 'FocusPreviousSearchResult.label' , 'Focus Previous Search Result' ) ,
423
+ original : 'Focus Previous Search Result'
424
424
} ,
425
425
keybinding : [ {
426
426
primary : KeyMod . Shift | KeyCode . F4 ,
427
427
weight : KeybindingWeight . WorkbenchContrib ,
428
428
} ] ,
429
- category : category . value ,
430
-
429
+ category : category ,
430
+ f1 : true ,
431
431
precondition : ContextKeyExpr . or ( Constants . HasSearchResults , SearchEditorConstants . InSearchEditor ) ,
432
432
} ) ;
433
433
}
@@ -442,14 +442,15 @@ registerAction2(class ReplaceInFilesAction extends Action2 {
442
442
super ( {
443
443
id : Constants . ReplaceInFilesActionId ,
444
444
title : {
445
- value : nls . localize ( 'replaceInFiles' , 'Search: Replace in Files' ) ,
446
- original : 'Search: Replace in Files'
445
+ value : nls . localize ( 'replaceInFiles' , 'Replace in Files' ) ,
446
+ original : 'Replace in Files'
447
447
} ,
448
448
keybinding : [ {
449
449
primary : KeyMod . CtrlCmd | KeyMod . Shift | KeyCode . KeyH ,
450
450
weight : KeybindingWeight . WorkbenchContrib ,
451
451
} ] ,
452
- category : category . value ,
452
+ category : category ,
453
+ f1 : true ,
453
454
menu : [ {
454
455
id : MenuId . MenubarEditMenu ,
455
456
group : '4_find_global' ,
0 commit comments