You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VS Code 1.20 adds a new CodeAction type that attaches additional metadata to code actions. This additional information is already being used in a few places:
CodeAction.kind describes the kind of a code action (extract refactoring, quickfix, ...) Kinds are used for VS Code's new refactor command, and they are used to setup keybindings for specific code actions
CodeAction.diagnostics tells which errors a quickfix addresses. This is used to order quickfixes by severity
I suggest that you migrate this extension to use the new CodeAction type in order to enable support for these new features.
VS Code 1.20 adds a new
CodeAction
type that attaches additional metadata to code actions. This additional information is already being used in a few places:CodeAction.kind
describes the kind of a code action (extract refactoring, quickfix, ...) Kinds are used for VS Code's newrefactor
command, and they are used to setup keybindings for specific code actionsCodeAction.diagnostics
tells which errors a quickfix addresses. This is used to order quickfixes by severityI suggest that you migrate this extension to use the new
CodeAction
type in order to enable support for these new features.Depends on microsoft/language-server-protocol#389.
The text was updated successfully, but these errors were encountered: