View source
typedef TextDocumentSyncOptions
package languageServerProtocol.protocol
import languageServerProtocol.protocol.Protocol
Fields
optionalwillSaveWaitUntil:Null<Bool>
If present will save wait until requests are sent to the server. If omitted the request should not be sent.
optionalwillSave:Null<Bool>
If present will save notifications are sent to the server. If omitted the notification should not be sent.
optionalsave:Null<SaveOptions>
If present save notifications are sent to the server. If omitted the notification should not be sent.
optionalopenClose:Null<Bool>
Open and close notifications are sent to the server. If omitted open close notification should not be sent.
optionalchange:Null<TextDocumentSyncKind>
Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full and TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None.