extension contributed kernels fall back to all languages when supportedLanguages isn't set, https://github.com/microsoft/vscode/issues/121329

This commit is contained in:
Johannes Rieken
2021-04-21 11:34:48 +02:00
parent 0c723c1bf3
commit 4f9ac638ff
4 changed files with 13 additions and 13 deletions

View File

@@ -914,7 +914,7 @@ export interface INotebookKernelDto2 {
detail?: string;
description?: string;
isPreferred?: boolean;
supportedLanguages: string[];
supportedLanguages?: string[];
supportsInterrupt?: boolean;
hasExecutionOrder?: boolean;
preloads?: { uri: UriComponents; provides: string[] }[];