View Source GenLSP.Structures.InlayHintRegistrationOptions (gen_lsp v0.8.1)

Inlay hint options used during static or dynamic registration.

@since 3.17.0

Link to this section Summary

Functions

Fields

  • id: The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
  • resolve_provider: The server provides support to resolve additional information for an inlay hint item.
  • document_selector: A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

Link to this section Types

@type t() :: %GenLSP.Structures.InlayHintRegistrationOptions{
  document_selector: GenLSP.TypeAlias.DocumentSelector.t() | nil,
  id: String.t() | nil,
  resolve_provider: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.InlayHintRegistrationOptions{}

View Source (struct)

fields

Fields

  • id: The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
  • resolve_provider: The server provides support to resolve additional information for an inlay hint item.
  • document_selector: A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.