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

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

Message Direction: clientToServer

Link to this section Summary

Link to this section Types

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