Start cleaning up structure of code action code (#163875)

- Moves common types into `common`
- Move some command IDs into common
- Moves getCodeActions into `codeAction.ts` instead of `codeActionCommands`
This commit is contained in:
Matt Bierner
2022-10-17 12:09:37 -07:00
committed by GitHub
parent 581edc8de7
commit 28fcaf139a
18 changed files with 153 additions and 154 deletions

View File

@@ -53,7 +53,7 @@ import { URITransformerService } from 'vs/workbench/api/common/extHostUriTransfo
import { OutlineModel } from 'vs/editor/contrib/documentSymbols/browser/outlineModel';
import { ILanguageFeaturesService } from 'vs/editor/common/services/languageFeatures';
import { LanguageFeaturesService } from 'vs/editor/common/services/languageFeaturesService';
import { CodeActionTriggerSource } from 'vs/editor/contrib/codeAction/browser/types';
import { CodeActionTriggerSource } from 'vs/editor/contrib/codeAction/common/types';
import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity';
import { IExtHostTelemetry } from 'vs/workbench/api/common/extHostTelemetry';