Feature/extension manager (#689)

* getting the extension gallery from a static file and enabling the extension manager
This commit is contained in:
Leila Lali
2018-02-15 10:23:31 -08:00
committed by GitHub
parent 47b855adf8
commit dfc212369a
8 changed files with 66 additions and 16 deletions

View File

@@ -690,7 +690,7 @@ export class CodeMenu {
const scm = this.createMenuItem(nls.localize({ key: 'miViewSCM', comment: ['&& denotes a mnemonic'] }, "S&&CM"), 'workbench.view.scm');
// {{SQL CARBON EDIT}}
// const debug = this.createMenuItem(nls.localize({ key: 'miViewDebug', comment: ['&& denotes a mnemonic'] }, "&&Debug"), 'workbench.view.debug');
// const extensions = this.createMenuItem(nls.localize({ key: 'miViewExtensions', comment: ['&& denotes a mnemonic'] }, "E&&xtensions"), 'workbench.view.extensions');
const extensions = this.createMenuItem(nls.localize({ key: 'miViewExtensions', comment: ['&& denotes a mnemonic'] }, "E&&xtensions"), 'workbench.view.extensions');
const output = this.createMenuItem(nls.localize({ key: 'miToggleOutput', comment: ['&& denotes a mnemonic'] }, "&&Output"), 'workbench.action.output.toggleOutput');
// {{SQL CARBON EDIT}}
// const debugConsole = this.createMenuItem(nls.localize({ key: 'miToggleDebugConsole', comment: ['&& denotes a mnemonic'] }, "De&&bug Console"), 'workbench.debug.action.toggleRepl');
@@ -766,7 +766,7 @@ export class CodeMenu {
scm,
// {{SQL CARBON EDIT}}
// debug,
// extensions,
extensions,
additionalViewlets,
__separator__(),
output,