We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e774bf commit 70772daCopy full SHA for 70772da
1 file changed
src/core/folderRoot.ts
@@ -13,7 +13,7 @@ class WorkspaceFolderRoot implements vscode.Disposable {
13
private checkUri() {
14
const folders = vscode.workspace.workspaceFolders || [];
15
this._folderSet = new Set(
16
- folders.map((i) => i.uri.fsPath.replace(/\\/g, '/')).filter((i) => i),
+ folders.map((i) => (i.uri.fsPath || '').toLowerCase().replace(/\\/g, '/')).filter((i) => i),
17
);
18
// TODO Special handling for multiple workspaces
19
if (folders.length) {
0 commit comments