@@ -52,7 +52,7 @@ import { getMultiSelectedResources } from 'vs/workbench/parts/files/browser/file
5252import { Schemas } from 'vs/base/common/network' ;
5353import { PanelRegistry , Extensions as PanelExtensions , PanelDescriptor } from 'vs/workbench/browser/panel' ;
5454import { IPanelService } from 'vs/workbench/services/panel/common/panelService' ;
55- import { openSearchView , getSearchView , ReplaceAllInFolderAction , ReplaceAllAction , CloseReplaceAction , FocusNextSearchResultAction , FocusPreviousSearchResultAction , ReplaceInFilesAction , FindInFilesAction , toggleCaseSensitiveCommand , toggleRegexCommand , CollapseDeepestExpandedLevelAction , toggleWholeWordCommand , RemoveAction , ReplaceAction , ClearSearchResultsAction , copyPathCommand , copyMatchCommand , copyAllCommand , clearHistoryCommand , FocusNextInputAction , FocusPreviousInputAction , RefreshAction } from 'vs/workbench/parts/search/browser/searchActions' ;
55+ import { openSearchView , getSearchView , ReplaceAllInFolderAction , ReplaceAllAction , CloseReplaceAction , FocusNextSearchResultAction , FocusPreviousSearchResultAction , ReplaceInFilesAction , FindInFilesAction , toggleCaseSensitiveCommand , toggleRegexCommand , CollapseDeepestExpandedLevelAction , toggleWholeWordCommand , RemoveAction , ReplaceAction , ClearSearchResultsAction , copyPathCommand , copyMatchCommand , copyAllCommand , clearHistoryCommand , FocusNextInputAction , FocusPreviousInputAction , RefreshAction , focusSearchListCommand } from 'vs/workbench/parts/search/browser/searchActions' ;
5656import { VIEW_ID , ISearchConfigurationProperties } from 'vs/platform/search/common/search' ;
5757import { IWorkbenchContributionsRegistry , Extensions as WorkbenchExtensions } from 'vs/workbench/common/contributions' ;
5858import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle' ;
@@ -331,6 +331,19 @@ MenuRegistry.appendMenuItem(MenuId.SearchContext, {
331331 order : 1
332332} ) ;
333333
334+ CommandsRegistry . registerCommand ( {
335+ id : Constants . FocusSearchListCommandID ,
336+ handler : focusSearchListCommand
337+ } ) ;
338+
339+ const focusSearchListCommandLabel = nls . localize ( 'focusSearchListCommandLabel' , "Focus List" ) ;
340+ const FocusSearchListCommand : ICommandAction = {
341+ id : Constants . FocusSearchListCommandID ,
342+ title : focusSearchListCommandLabel ,
343+ category
344+ } ;
345+ MenuRegistry . addCommand ( FocusSearchListCommand ) ;
346+
334347const FIND_IN_FOLDER_ID = 'filesExplorer.findInFolder' ;
335348CommandsRegistry . registerCommand ( {
336349 id : FIND_IN_FOLDER_ID ,
0 commit comments