I was experiencing the blank screen, without any recent VSCode updates.
It was only happening with one particular project. I moved .vscode
out of the project and it opened. After closing it and returning the same .vscode
it is now opening fine.
All that was in .vscode was some custom cspell dictionaries & cspell configuration, and this handful of settings:
{
"editor.renderLineHighlight": "all",
"window.zoomLevel": -1.2,
"editor.formatOnSave": true,
"editor.formatOnSaveTimeout": 3000,
"files.autoSave": "onFocusChange",
"editor.fontSize": 14,
"todo.file.name": "*.todo"
}
I suspect in my case the root of the problem might be the elixir language server, which has frequent problems requiring the deletion of its build directory, especially when multiple elixir projects are open simultaneously.