module LanguageServer::Protocol::Constant::TextDocumentSyncKind
Defines how the host (editor) should sync document changes to the language server.
Constants
- 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.