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

The parameters sent in a save text document notification

Link to this section Summary

Functions

Fields

  • text_document: The document that was saved.
  • text: Optional the content when saved. Depends on the includeText value when the save notification was requested.

Link to this section Types

@type t() :: %GenLSP.Structures.DidSaveTextDocumentParams{
  text: String.t() | nil,
  text_document: GenLSP.Structures.TextDocumentIdentifier.t()
}

Link to this section Functions

Link to this function

%GenLSP.Structures.DidSaveTextDocumentParams{}

View Source (struct)

fields

Fields

  • text_document: The document that was saved.
  • text: Optional the content when saved. Depends on the includeText value when the save notification was requested.