-
Notifications
You must be signed in to change notification settings - Fork 499
New issue
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
Fully support multi-root workspaces #3796
Conversation
5aa078b
to
710f6d8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
710f6d8
to
46e0e77
Compare
@@ -24,6 +24,9 @@ export function getPipePath(pipeName: string) { | |||
// Check that the file or directory exists in an asynchronous manner that relies | |||
// solely on the VS Code API, not Node's fs library, ignoring symlinks. | |||
async function checkIfFileOrDirectoryExists(targetPath: string | vscode.Uri, type: vscode.FileType): Promise<boolean> { | |||
if (targetPath === "") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SeeminglyScience since the settings overhaul PR, the default cwd
was ""
which conspicuously vscode.workspace.fs.stat
was totally fine saying it existed.
Resolves #2153.