mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Clean up
This commit is contained in:
parent
4eb72c92de
commit
c3c806af39
2 changed files with 2 additions and 3 deletions
|
@ -203,7 +203,7 @@ export class ChatExtensionPointHandler implements IWorkbenchContribution {
|
|||
{
|
||||
extensionId: extension.description.identifier,
|
||||
extensionPublisher: extension.description.publisherDisplayName ?? extension.description.publisher, // May not be present in OSS
|
||||
extensionDisplayName: extension.description.displayName ?? extension.description.name, // ?
|
||||
extensionDisplayName: extension.description.displayName ?? extension.description.name,
|
||||
id: providerDescriptor.id,
|
||||
description: providerDescriptor.description,
|
||||
metadata: {
|
||||
|
|
|
@ -2975,8 +2975,7 @@ CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsForL
|
|||
});
|
||||
});
|
||||
|
||||
export const showExtensionsWithIdsCommandId = 'workbench.extensions.action.showExtensionsWithIds';
|
||||
CommandsRegistry.registerCommand(showExtensionsWithIdsCommandId, function (accessor: ServicesAccessor, extensionIds: string[]) {
|
||||
CommandsRegistry.registerCommand('workbench.extensions.action.showExtensionsWithIds', function (accessor: ServicesAccessor, extensionIds: string[]) {
|
||||
const paneCompositeService = accessor.get(IPaneCompositePartService);
|
||||
|
||||
return paneCompositeService.openPaneComposite(VIEWLET_ID, ViewContainerLocation.Sidebar, true)
|
||||
|
|
Loading…
Reference in a new issue