提交 7dc9539a 编写于 作者: R Ramya Achutha Rao

Have enabled and recommended by default in Extensions view

上级 14026829
......@@ -103,42 +103,42 @@ export class ExtensionsViewletViewsContribution implements IWorkbenchContributio
private createInstalledExtensionsListViewDescriptor(): IViewDescriptor {
return {
id: 'extensions.installedList',
id: 'extensions.installedExtensionsList',
name: localize('installedExtensions', "Installed"),
container: VIEW_CONTAINER,
ctor: InstalledExtensionsView,
when: ContextKeyExpr.and(ContextKeyExpr.not('searchExtensions')),
order: 1,
weight: 30,
canToggleVisibility: true
canToggleVisibility: true,
hideByDefault: true
};
}
private createEnabledExtensionsListViewDescriptor(): IViewDescriptor {
return {
id: 'extensions.enabledList',
id: 'extensions.enabledExtensionsList',
name: localize('enabledExtensions', "Enabled"),
container: VIEW_CONTAINER,
ctor: EnabledExtensionsView,
when: ContextKeyExpr.and(ContextKeyExpr.not('searchExtensions')),
weight: 30,
canToggleVisibility: true,
order: 30,
collapsed: true
order: 1
};
}
private createDisabledExtensionsListViewDescriptor(): IViewDescriptor {
return {
id: 'extensions.disabledList',
id: 'extensions.disabledExtensionsList',
name: localize('disabledExtensions', "Disabled"),
container: VIEW_CONTAINER,
ctor: DisabledExtensionsView,
when: ContextKeyExpr.and(ContextKeyExpr.not('searchExtensions')),
weight: 30,
weight: 1,
canToggleVisibility: true,
order: 40,
collapsed: true
order: 30,
hideByDefault: true
};
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册