usual every morning build fixing

This commit is contained in:
Benjamin Pasero
2017-01-23 07:42:08 +01:00
parent 9fb597611f
commit c698fddbee
2 changed files with 4 additions and 4 deletions

View File

@@ -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.

View File

@@ -22,12 +22,12 @@ Registry.as<IEditorRegistry>(EditorExtensions.Editors)
localize('walkThrough.editor.label', "Walk-Through"),
'vs/workbench/parts/walkThrough/electron-browser/walkThroughPart',
'WalkThroughPart'),
[new SyncDescriptor(WalkThroughInput)]);
[new SyncDescriptor(WalkThroughInput)]);
Registry.as<IWorkbenchActionRegistry>(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<IWorkbenchContributionsRegistry>(WorkbenchExtensions.Workbench)
.registerWorkbenchContribution(WalkThroughContentProvider);