We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1594daa commit fbb3a8cCopy full SHA for fbb3a8c
src/common/utils/pathUtils.ts
@@ -51,7 +51,7 @@ function isEqual(uri1: Uri | undefined, uri2: Uri | undefined): boolean {
51
function getComparisonKey(uri: Uri): string {
52
return uri
53
.with({
54
- path: uri.path.toLowerCase(),
+ path: isWindows() ? uri.path.toLowerCase() : uri.path,
55
fragment: undefined,
56
})
57
.toString();
0 commit comments