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
The request is sent from the client to the server to resolve additional information for a given code action. This is usually used to compute the edit property of a code action to avoid its unnecessary computation during the textDocument/codeAction request.
A CodeAction must set either edit and/or a command
It seems that there is missing a part in the above description, clarifying that a CodeAction must set either edit and/or a commandIF the method is codeAction/resolve.
The text was updated successfully, but these errors were encountered:
A CodeAction is the response for at least these two methods:
textDocument/codeAction
:(Command | CodeAction)[] | null
codeAction/resolve
:CodeAction
The
codeAction/resolve
specification states:The CodeAction specification states:
It seems that there is missing a part in the above description, clarifying that a CodeAction must set either
edit
and/or acommand
IF the method iscodeAction/resolve
.The text was updated successfully, but these errors were encountered: