From e2e40677c6c6ecd101ec715ebe07168767c86354 Mon Sep 17 00:00:00 2001 From: Johannes Date: Mon, 28 Mar 2022 09:18:14 +0200 Subject: [PATCH] actually foward cell content change events to extension host, https://github.com/microsoft/vscode/issues/145793 --- src/vs/workbench/api/browser/mainThreadNotebookDocuments.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/api/browser/mainThreadNotebookDocuments.ts b/src/vs/workbench/api/browser/mainThreadNotebookDocuments.ts index c586ceacf3521..d48cc2f305b8d 100644 --- a/src/vs/workbench/api/browser/mainThreadNotebookDocuments.ts +++ b/src/vs/workbench/api/browser/mainThreadNotebookDocuments.ts @@ -90,6 +90,7 @@ export class MainThreadNotebookDocuments implements MainThreadNotebookDocumentsS }); break; case NotebookCellsChangeType.ChangeLanguage: + case NotebookCellsChangeType.ChangeCellContent: case NotebookCellsChangeType.ChangeCellMetadata: case NotebookCellsChangeType.ChangeCellInternalMetadata: eventDto.rawEvents.push(e);