Interface TextDocumentSyncClientCapabilities

interface TextDocumentSyncClientCapabilities {
    didSave?: boolean;
    dynamicRegistration?: boolean;
    willSave?: boolean;
    willSaveWaitUntil?: boolean;
}

Properties

didSave?: boolean

The client supports did save notifications.

dynamicRegistration?: boolean

Whether text document synchronization supports dynamic registration.

willSave?: boolean

The client supports sending will save notifications.

willSaveWaitUntil?: boolean

The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.