Struct

LspTextDocumentIdentifier

Description

struct LspTextDocumentIdentifier {
  GUri* _uri;
  gint64* _version;
}

Contains a text document’s URI and the version (optionally).

Structure members
_uri: GUri

The text document’s URI.

Text documents are identified using a URI. On the protocol level, URIs are passed as strings.

_version: gint64*

The version number of this document.

The version number of a document will increase after each change, including undo/redo. The number doesn’t need to be consecutive.

Instance methods

lsp_text_document_identifier_init
No description available.

lsp_text_document_identifier_to_variant
No description available.

lsp_text_document_identifier_get_uri

Gets the value of uri.

lsp_text_document_identifier_set_uri

Sets the value of uri.

lsp_text_document_identifier_get_version

Gets the value of version.

lsp_text_document_identifier_set_version

Sets the value of version.