mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Document TextDocumentSyncKind.None behavior for cell text synchronization
Co-authored-by: dbaeumer <1931590+dbaeumer@users.noreply.github.com>
This commit is contained in:
parent
caa2a46cc6
commit
5c4d6ddf9e
2 changed files with 8 additions and 0 deletions
|
|
@ -358,6 +358,10 @@ export interface NotebookDocumentSyncOptions {
|
|||
* How cell text content should be synced to the server. If omitted,
|
||||
* cell text content is sent in full for every change.
|
||||
*
|
||||
* If `TextDocumentSyncKind.None`, cell text content changes are not
|
||||
* synchronized to the server. This is useful when only the notebook
|
||||
* structure (cells) needs to be tracked, but not the cell content.
|
||||
*
|
||||
* If `TextDocumentSyncKind.Full`, the client MUST send the full
|
||||
* content of the cell on every change. Ranged updates (incremental
|
||||
* synchronization) MUST NOT be used.
|
||||
|
|
|
|||
|
|
@ -376,6 +376,10 @@ export interface NotebookDocumentSyncOptions {
|
|||
* How cell text content should be synced to the server. If omitted,
|
||||
* cell text content is sent in full for every change.
|
||||
*
|
||||
* If `TextDocumentSyncKind.None`, cell text content changes are not
|
||||
* synchronized to the server. This is useful when only the notebook
|
||||
* structure (cells) needs to be tracked, but not the cell content.
|
||||
*
|
||||
* If `TextDocumentSyncKind.Full`, the client MUST send the full
|
||||
* content of the cell on every change. Ranged updates (incremental
|
||||
* synchronization) MUST NOT be used.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue