We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50a024 commit dde28b6Copy full SHA for dde28b6
src/lsptoolshost/buildDiagnosticsService.ts
@@ -53,7 +53,7 @@ export class BuildDiagnosticsService {
53
}
54
55
private compareUri(a: vscode.Uri, b: vscode.Uri): boolean {
56
- return a.path.localeCompare(b.path, undefined, { sensitivity: 'accent' }) === 0;
+ return a.fsPath.localeCompare(b.fsPath) === 0;
57
58
59
public async _onFileOpened(document: vscode.TextDocument, buildOnlyIds: string[]) {
0 commit comments