mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Categorize kernels in the notebook kernel picker (#135502)
* Categorize kernels in the notebook kernel picker * rename property * address review comments * more changes * fix liner * address review comments
This commit is contained in:
@@ -166,6 +166,15 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
|
||||
data.description = value;
|
||||
_update();
|
||||
},
|
||||
get kind() {
|
||||
checkProposedApiEnabled(extension);
|
||||
return data.kind ?? '';
|
||||
},
|
||||
set kind(value) {
|
||||
checkProposedApiEnabled(extension);
|
||||
data.kind = value;
|
||||
_update();
|
||||
},
|
||||
get supportedLanguages() {
|
||||
return data.supportedLanguages;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user