View Source GenLSP.Requests.CodeActionResolve (gen_lsp v0.8.1)

Request to resolve additional information for a given code action.The request's parameter is of type {@link CodeAction} the response is of type {@link CodeAction} or a Thenable that resolves to such.

Message Direction: clientToServer

Link to this section Summary

Link to this section Types

@type result() :: GenLSP.Structures.CodeAction.t()
@type t() :: %GenLSP.Requests.CodeActionResolve{
  id: integer(),
  jsonrpc: String.t(),
  method: String.t(),
  params: GenLSP.Structures.CodeAction.t() | nil
}