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

Additional information that describes document changes.

@since 3.16.0

Link to this section Summary

Functions

Fields

  • label: A human-readable string describing the actual change. The string is rendered prominent in the user interface.
  • needs_confirmation: A flag which indicates that user confirmation is needed before applying the change.
  • description: A human-readable string which is rendered less prominent in the user interface.

Link to this section Types

@type t() :: %GenLSP.Structures.ChangeAnnotation{
  description: String.t() | nil,
  label: String.t(),
  needs_confirmation: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.ChangeAnnotation{}

View Source (struct)

fields

Fields

  • label: A human-readable string describing the actual change. The string is rendered prominent in the user interface.
  • needs_confirmation: A flag which indicates that user confirmation is needed before applying the change.
  • description: A human-readable string which is rendered less prominent in the user interface.