We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce:
# shut down VS Code mkdir foo cd foo code . # close editor window cd .. rmdir foo code . # editor window is blank
The second time it starts, there is a blank (all black) window. Using 'Toggle Developer Tools' there is an error on the console:
Uncaught Error: ENOENT: no such file or directory, uv_cwd path.js:1144
The code looks like this:
if (cwd === undefined) cwd = process.cwd();
Apparently, this dies if the process's current directory at startup no longer exists.
To recover, quit out of VS Code (instead of just closing the editor window).
The text was updated successfully, but these errors were encountered:
#2259
Sorry, something went wrong.
No branches or pull requests
Steps to Reproduce:
The second time it starts, there is a blank (all black) window. Using 'Toggle Developer Tools' there is an error on the console:
Uncaught Error: ENOENT: no such file or directory, uv_cwd path.js:1144
The code looks like this:
Apparently, this dies if the process's current directory at startup no longer exists.
To recover, quit out of VS Code (instead of just closing the editor window).
The text was updated successfully, but these errors were encountered: