@@ -403,8 +403,8 @@ registerAction2(class FocusNextSearchResultAction extends Action2 {
403403 primary : KeyCode . F4 ,
404404 weight : KeybindingWeight . WorkbenchContrib ,
405405 } ] ,
406- category : category . value ,
407-
406+ category : category ,
407+ f1 : true ,
408408 precondition : ContextKeyExpr . or ( Constants . HasSearchResults , SearchEditorConstants . InSearchEditor ) ,
409409 } ) ;
410410 }
@@ -419,15 +419,15 @@ registerAction2(class FocusPreviousSearchResultAction extends Action2 {
419419 super ( {
420420 id : Constants . FocusPreviousSearchResultActionId ,
421421 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'
424424 } ,
425425 keybinding : [ {
426426 primary : KeyMod . Shift | KeyCode . F4 ,
427427 weight : KeybindingWeight . WorkbenchContrib ,
428428 } ] ,
429- category : category . value ,
430-
429+ category : category ,
430+ f1 : true ,
431431 precondition : ContextKeyExpr . or ( Constants . HasSearchResults , SearchEditorConstants . InSearchEditor ) ,
432432 } ) ;
433433 }
@@ -442,14 +442,15 @@ registerAction2(class ReplaceInFilesAction extends Action2 {
442442 super ( {
443443 id : Constants . ReplaceInFilesActionId ,
444444 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'
447447 } ,
448448 keybinding : [ {
449449 primary : KeyMod . CtrlCmd | KeyMod . Shift | KeyCode . KeyH ,
450450 weight : KeybindingWeight . WorkbenchContrib ,
451451 } ] ,
452- category : category . value ,
452+ category : category ,
453+ f1 : true ,
453454 menu : [ {
454455 id : MenuId . MenubarEditMenu ,
455456 group : '4_find_global' ,
0 commit comments