@@ -20,7 +20,7 @@ import { IEditorRegistry, Extensions as EditorExtensions } from 'vs/workbench/co
2020import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors' ;
2121import { VIEWLET_ID , IExtensionsWorkbenchService } from './extensions' ;
2222import { ExtensionsWorkbenchService } from './extensionsWorkbenchService' ;
23- import { OpenExtensionsViewletAction , InstallExtensionsAction , ShowOutdatedExtensionsAction , ShowRecommendedExtensionsAction , ShowWorkspaceRecommendedExtensionsAction , ShowPopularExtensionsAction , ShowInstalledExtensionsAction , UpdateAllAction , OpenExtensionsFolderAction , ConfigureWorkspaceRecommendedExtensionsAction , OpenWorkspaceExtensionsStorageFile , OpenGlobalExtensionsStorageFile , InstallVSIXAction } from './extensionsActions' ;
23+ import { OpenExtensionsViewletAction , InstallExtensionsAction , ShowOutdatedExtensionsAction , ShowRecommendedExtensionsAction , ShowWorkspaceRecommendedExtensionsAction , ShowPopularExtensionsAction , ShowInstalledExtensionsAction , ShowDisabledExtensionsAction , UpdateAllAction , OpenExtensionsFolderAction , ConfigureWorkspaceRecommendedExtensionsAction , OpenWorkspaceExtensionsStorageFile , OpenGlobalExtensionsStorageFile , InstallVSIXAction } from './extensionsActions' ;
2424import { ExtensionsInput } from './extensionsInput' ;
2525import { ViewletRegistry , Extensions as ViewletExtensions , ViewletDescriptor } from 'vs/workbench/browser/viewlet' ;
2626import { ExtensionEditor } from './extensionEditor' ;
@@ -110,6 +110,9 @@ actionRegistry.registerWorkbenchAction(popularActionDescriptor, 'Extensions: Sho
110110const installedActionDescriptor = new SyncActionDescriptor ( ShowInstalledExtensionsAction , ShowInstalledExtensionsAction . ID , ShowInstalledExtensionsAction . LABEL ) ;
111111actionRegistry . registerWorkbenchAction ( installedActionDescriptor , 'Extensions: Show Installed Extensions' , ExtensionsLabel ) ;
112112
113+ const disabledActionDescriptor = new SyncActionDescriptor ( ShowDisabledExtensionsAction , ShowDisabledExtensionsAction . ID , ShowDisabledExtensionsAction . LABEL ) ;
114+ actionRegistry . registerWorkbenchAction ( disabledActionDescriptor , 'Extensions: Show Disabled Extensions' , ExtensionsLabel ) ;
115+
113116const updateAllActionDescriptor = new SyncActionDescriptor ( UpdateAllAction , UpdateAllAction . ID , UpdateAllAction . LABEL ) ;
114117actionRegistry . registerWorkbenchAction ( updateAllActionDescriptor , 'Extensions: Update All Extensions' , ExtensionsLabel ) ;
115118
@@ -119,11 +122,11 @@ actionRegistry.registerWorkbenchAction(openExtensionsFolderActionDescriptor, 'Ex
119122const openExtensionsFileActionDescriptor = new SyncActionDescriptor ( ConfigureWorkspaceRecommendedExtensionsAction , ConfigureWorkspaceRecommendedExtensionsAction . ID , ConfigureWorkspaceRecommendedExtensionsAction . LABEL ) ;
120123actionRegistry . registerWorkbenchAction ( openExtensionsFileActionDescriptor , 'Extensions: Open Extensions File' , ExtensionsLabel ) ;
121124
122- const disableExtensionsActionDescriptor = new SyncActionDescriptor ( OpenGlobalExtensionsStorageFile , OpenGlobalExtensionsStorageFile . ID , localize ( 'disableGlobalExtensions' , "Disable Extensions" ) ) ;
123- actionRegistry . registerWorkbenchAction ( disableExtensionsActionDescriptor , 'Extensions: Disable Extensions' , ExtensionsLabel ) ;
125+ const disableExtensionsActionDescriptor = new SyncActionDescriptor ( OpenGlobalExtensionsStorageFile , OpenGlobalExtensionsStorageFile . ID , localize ( 'disableGlobalExtensions' , "Configure Disabled Extensions" ) ) ;
126+ actionRegistry . registerWorkbenchAction ( disableExtensionsActionDescriptor , 'Extensions: Configure Disabled Extensions' , ExtensionsLabel ) ;
124127
125- const disableWorkspaceExtensionsActionDescriptor = new SyncActionDescriptor ( OpenWorkspaceExtensionsStorageFile , OpenWorkspaceExtensionsStorageFile . ID , localize ( 'disableWorkspaceExtensions' , "Disable Extensions (Workspace)" ) ) ;
126- actionRegistry . registerWorkbenchAction ( disableWorkspaceExtensionsActionDescriptor , 'Extensions: Disable Extensions (Workspace)' , ExtensionsLabel ) ;
128+ const disableWorkspaceExtensionsActionDescriptor = new SyncActionDescriptor ( OpenWorkspaceExtensionsStorageFile , OpenWorkspaceExtensionsStorageFile . ID , localize ( 'disableWorkspaceExtensions' , "Configure Disabled Extensions (Workspace)" ) ) ;
129+ actionRegistry . registerWorkbenchAction ( disableWorkspaceExtensionsActionDescriptor , 'Extensions: Configure Disabled Extensions (Workspace)' , ExtensionsLabel ) ;
127130
128131const installVSIXActionDescriptor = new SyncActionDescriptor ( InstallVSIXAction , InstallVSIXAction . ID , InstallVSIXAction . LABEL ) ;
129132actionRegistry . registerWorkbenchAction ( installVSIXActionDescriptor , 'Extensions: Install from VSIX...' , ExtensionsLabel ) ;
0 commit comments