TextDocumentSyncKind
Description:
public enum TextDocumentSyncKind
Describes how the host (editor) should sync document changes to the language server.
Content:
Enum values:
- FULL - Documents are synced by always
sending the full content of the document.
- INCREMENTAL - Documents are
synced by sending the full content on open. After that only incremental updates to the document are sent.
- NONE - Documents should not be synced
at all.