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

Link to this section Summary

Functions

Fields

  • dynamic_registration: Whether text document synchronization supports dynamic registration.
  • will_save: The client supports sending will save notifications.
  • will_save_wait_until: The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
  • did_save: The client supports did save notifications.

Link to this section Types

@type t() :: %GenLSP.Structures.TextDocumentSyncClientCapabilities{
  did_save: boolean() | nil,
  dynamic_registration: boolean() | nil,
  will_save: boolean() | nil,
  will_save_wait_until: boolean() | nil
}

Link to this section Functions

Link to this function

%GenLSP.Structures.TextDocumentSyncClientCapabilities{}

View Source (struct)

fields

Fields

  • dynamic_registration: Whether text document synchronization supports dynamic registration.
  • will_save: The client supports sending will save notifications.
  • will_save_wait_until: The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.
  • did_save: The client supports did save notifications.