mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-24 16:35:55 +01:00
Kernel picker MRU experiment (#166307)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user