c0a756023777bfc81a87ed23222a1feb9294712a7a5cf0f41a15d41178d6bf18f81d8d9e66cebd215a0ebe5824eb2a760d10c55d98d03c58383dc87100b56e 1.1 KB

12345678910111213141516
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. import { registerEditorAction, registerEditorCommand, registerEditorContribution } from '../../../browser/editorExtensions.js';
  6. import { AutoFixAction, CodeActionCommand, FixAllAction, OrganizeImportsAction, QuickFixAction, QuickFixController, RefactorAction, RefactorPreview, SourceAction } from './codeActionCommands.js';
  7. import './codeActionWidgetContribution.js';
  8. registerEditorContribution(QuickFixController.ID, QuickFixController);
  9. registerEditorAction(QuickFixAction);
  10. registerEditorAction(RefactorAction);
  11. registerEditorAction(RefactorPreview);
  12. registerEditorAction(SourceAction);
  13. registerEditorAction(OrganizeImportsAction);
  14. registerEditorAction(AutoFixAction);
  15. registerEditorAction(FixAllAction);
  16. registerEditorCommand(new CodeActionCommand());