You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we support just incremental updates. The goal is to support all synchronization options specified by the protocol:
/**
* Defines how the host (editor) should sync document changes to the language server.
*/
export namespace TextDocumentSyncKind {
/**
* Documents should not be synced at all.
*/
export const None = 0;
/**
* Documents are synced by always sending the full content
* of the document.
*/
export const Full = 1;
/**
* Documents are synced by sending the full content on open.
* After that only incremental updates to the document are
* send.
*/
export const Incremental = 2;
}
The text was updated successfully, but these errors were encountered:
Currently we support just incremental updates. The goal is to support all synchronization options specified by the protocol:
The text was updated successfully, but these errors were encountered: