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

Registration options for a {@link SignatureHelpRequest}.

Link to this section Summary

Functions

Fields

  • 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.SignatureHelpRegistrationOptions{
  document_selector: GenLSP.TypeAlias.DocumentSelector.t() | nil,
  retrigger_characters: [String.t()] | nil,
  trigger_characters: [String.t()] | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.SignatureHelpRegistrationOptions{}

View Source (struct)

fields

Fields

  • 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.

  • trigger_characters: List of characters that trigger signature help automatically.

  • retrigger_characters: List of characters that re-trigger signature help.

    These trigger characters are only active when signature help is already showing. All trigger characters are also counted as re-trigger characters.

    @since 3.15.0