1234567891011121314 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- import { registerEditorAction, registerEditorCommand, registerEditorContribution } from '../../browser/editorExtensions.js';
- import { AutoFixAction, CodeActionCommand, FixAllAction, OrganizeImportsAction, QuickFixAction, QuickFixController, RefactorAction, SourceAction } from './codeActionCommands.js';
- registerEditorContribution(QuickFixController.ID, QuickFixController);
- registerEditorAction(QuickFixAction);
- registerEditorAction(RefactorAction);
- registerEditorAction(SourceAction);
- registerEditorAction(OrganizeImportsAction);
- registerEditorAction(AutoFixAction);
- registerEditorAction(FixAllAction);
- registerEditorCommand(new CodeActionCommand());
|