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

Request to request hover information at a given text document position. The request's parameter is of type {@link TextDocumentPosition} the response is of type {@link Hover} or a Thenable that resolves to such.

Message Direction: clientToServer

Link to this section Summary

Link to this section Types

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