This commit is contained in:
Maria José Solano 2022-06-20 23:51:29 -07:00 committed by GitHub
parent 9e3d16aa2f
commit 7e7971fca4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -9670,7 +9670,7 @@
"name": "boolean"
},
"optional": true,
"documentation": "Open and close notifications are sent to the server. If omitted open close notification should not\nbe sent."
"documentation": "Open and close notifications are sent to the server. If omitted open close notifications should not\nbe sent."
},
{
"name": "change",
@ -13043,7 +13043,7 @@
{
"name": "Incremental",
"value": 2,
"documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsend."
"documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsent."
}
],
"documentation": "Defines how the host (editor) should sync\ndocument changes to the language server."

View file

@ -519,7 +519,7 @@ export namespace TextDocumentSyncKind {
/**
* Documents are synced by sending the full content on open.
* After that only incremental updates to the document are
* send.
* sent.
*/
export const Incremental = 2;
}
@ -531,7 +531,7 @@ export namespace TextDocumentSyncKind {
export interface TextDocumentSyncOptions {
/**
* Open and close notifications are sent to the server. If omitted open
* close notification should not be sent.
* close notifications should not be sent.
*/
openClose?: boolean;

View file

@ -21,5 +21,5 @@ _Request_:
* params: `WillSaveTextDocumentParams`
_Response_:
* result:[`TextEdit[]`](#textEdit) \| `null`
* result: [`TextEdit[]`](#textEdit) \| `null`
* error: code and message set in case an exception happens during the `textDocument/willSaveWaitUntil` request.