mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-01 22:20:21 +00:00
usual every morning build fixing
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user