Interface TextDocumentChangeRegistrationOptions

Describe options to be used when registered for text document change events.

interface TextDocumentChangeRegistrationOptions {
    documentSelector: null | DocumentSelector;
    syncKind: TextDocumentSyncKind;
}

Hierarchy (View Summary)

Properties

documentSelector: null | DocumentSelector

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

How documents are synced to the server.