From 1c77e85ebd28ca62089bb35a446408a313ca127f Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 14 Jan 2022 12:11:44 -0800 Subject: [PATCH] Update interactive window setting id #130713 --- src/vs/workbench/contrib/notebook/common/notebookCommon.ts | 2 +- src/vs/workbench/contrib/preferences/browser/settingsLayout.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/common/notebookCommon.ts b/src/vs/workbench/contrib/notebook/common/notebookCommon.ts index e65772b5068..06c90fc2d4a 100644 --- a/src/vs/workbench/contrib/notebook/common/notebookCommon.ts +++ b/src/vs/workbench/contrib/notebook/common/notebookCommon.ts @@ -948,7 +948,7 @@ export const NotebookSetting = { textOutputLineLimit: 'notebook.output.textLineLimit', globalToolbarShowLabel: 'notebook.globalToolbarShowLabel', markupFontSize: 'notebook.markup.fontSize', - interactiveWindowCollapseCodeCells: 'notebook.interactiveWindow.collapseCellInputCode' + interactiveWindowCollapseCodeCells: 'interactiveWindow.collapseCellInputCode' } as const; export const enum CellStatusbarAlignment { diff --git a/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts b/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts index 5ed4cde4ced..d631ff74b4a 100644 --- a/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts +++ b/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts @@ -191,7 +191,7 @@ export const tocData: ITOCEntry = { { id: 'features/notebook', label: localize('notebook', 'Notebook'), - settings: ['notebook.*'] + settings: ['notebook.*', 'interactiveWindow.*'] }, { id: 'features/audioCues',