Przemek Wesołek
Przemek Wesołek
> I'm considering either removing the weather feature entirely (it's been nothing but trouble over the years, and not even very accurate), or switching to OpenWeatherMap which has a much...
I also tested solution 2. and can confirm it works
Digging a bit deeper, I found this: https://github.com/microsoft/vscode/blob/756f4313e279815f5d2420ff88af880c78a86a3d/src/vs/workbench/contrib/notebook/browser/controller/editActions.ts#L431 ``` let languages = context.notebookEditor.activeKernel?.supportedLanguages; ``` So it looks like the list of supported languages is taken from the active kernel, and...
Following with short analysis and debugging of the `editActions.ts` mentioned above, to my surprise the cell language selectio process looks completely different when there is no active kernel. In such...
Maybe a simpler way would be to go with something proposed in a (duplicated?) issue, borrowed from Dinoland: https://github.com/nushell/nushell/issues/8481#issuecomment-1472570134