Kernel picker MRU experiment (#166307)

This commit is contained in:
Peng Lyu
2022-11-14 12:37:36 -08:00
committed by GitHub
parent 5f67407888
commit 7c62095eb6
2 changed files with 8 additions and 1 deletions
@@ -910,5 +910,11 @@ configurationRegistry.registerConfiguration({
type: 'string',
tags: ['notebookLayout']
},
[NotebookSetting.kernelPickerMRU]: {
markdownDescription: nls.localize('notebook.kernelPickerMRU', "Controls whether the kernel picker should show the most recently used kernels."),
type: 'boolean',
tags: ['notebookLayout'],
default: false
}
}
});
@@ -925,7 +925,8 @@ export const NotebookSetting = {
interactiveWindowCollapseCodeCells: 'interactiveWindow.collapseCellInputCode',
outputLineHeight: 'notebook.outputLineHeight',
outputFontSize: 'notebook.outputFontSize',
outputFontFamily: 'notebook.outputFontFamily'
outputFontFamily: 'notebook.outputFontFamily',
kernelPickerMRU: 'notebook.experimental.kernelPicker.mru'
} as const;
export const enum CellStatusbarAlignment {