View Source GenLSP.Structures.SignatureHelpParams (gen_lsp v0.10.0)
Parameters for a {@link SignatureHelpRequest}.
Link to this section Summary
Functions
Fields
context: The signature help context. This is only available if the client specifies to send this using the client capability
textDocument.signatureHelp.contextSupport === true
Link to this section Types
@type t() :: %GenLSP.Structures.SignatureHelpParams{ context: GenLSP.Structures.SignatureHelpContext.t() | nil, position: GenLSP.Structures.Position.t(), text_document: GenLSP.Structures.TextDocumentIdentifier.t(), work_done_token: GenLSP.TypeAlias.ProgressToken.t() | nil }
Link to this section Functions
fields
Fields
context: The signature help context. This is only available if the client specifies to send this using the client capability
textDocument.signatureHelp.contextSupport === true
@since 3.15.0
work_done_token: An optional token that a server can use to report work done progress.
text_document: The text document.
position: The position inside the text document.