Paths returned by VS Code APIs may have lowercase drive letters on Windows. As StartsWith
is case sensitive the logic fails. It's such short code I just rewrote it in Typescript and fixed my local copy.
if (normalizedPath[1] === ":") {
//force first char to uppercase
normalizedPath = normalizedPath.replace(normalizedPath[0], normalizedPath[0].toUpperCase());
}
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too