TextDocumentSyncKind
Description:
public enum TextDocumentSyncKind
Defines 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 send.
- NONE - Documents should not be
synced at all.
Methods: