diff --git a/extensions/typescript/src/typescriptMain.ts b/extensions/typescript/src/typescriptMain.ts index b806b6d1e13..24283c58a6c 100644 --- a/extensions/typescript/src/typescriptMain.ts +++ b/extensions/typescript/src/typescriptMain.ts @@ -9,7 +9,7 @@ * ------------------------------------------------------------------------------------------ */ 'use strict'; -import { env, languages, commands, workspace, window, Uri, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable } from 'vscode'; +import { env, languages, commands, workspace, window, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable } from 'vscode'; // This must be the first statement otherwise modules might got loaded with // the wrong locale. diff --git a/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts b/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts index c306eb61e9b..55033443bea 100644 --- a/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts +++ b/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts @@ -22,12 +22,12 @@ Registry.as(EditorExtensions.Editors) localize('walkThrough.editor.label', "Walk-Through"), 'vs/workbench/parts/walkThrough/electron-browser/walkThroughPart', 'WalkThroughPart'), - [new SyncDescriptor(WalkThroughInput)]); + [new SyncDescriptor(WalkThroughInput)]); Registry.as(Extensions.WorkbenchActions) .registerWorkbenchAction( - new SyncActionDescriptor(EditorWalkThroughAction, EditorWalkThroughAction.ID, EditorWalkThroughAction.LABEL), - 'Help: Editor Walk-Through', localize('help', "Help")); + new SyncActionDescriptor(EditorWalkThroughAction, EditorWalkThroughAction.ID, EditorWalkThroughAction.LABEL), + 'Help: Editor Walk-Through', localize('help', "Help")); Registry.as(WorkbenchExtensions.Workbench) .registerWorkbenchContribution(WalkThroughContentProvider);