From 63ccc4c93c7b1d1f3335336582ea13fbd4ae4787 Mon Sep 17 00:00:00 2001 From: rebornix Date: Tue, 27 Jul 2021 11:31:04 -0700 Subject: [PATCH] update undo/redo. --- .../contrib/notebook/browser/notebook.contribution.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts index 5c668d94b37..9a948f68f90 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebook.contribution.ts @@ -667,7 +667,8 @@ configurationRegistry.registerConfiguration({ [UndoRedoPerCell]: { description: nls.localize('notebook.undoRedoPerCell.description', "Whether to use separate undo/redo stack for each cell."), type: 'boolean', - default: false + default: true, + tags: ['notebookLayout'] }, [CompactView]: { description: nls.localize('notebook.compactView.description', "Control whether the notebook editor should be rendered in a compact form. "),