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 b698d63 commit e04c70aCopy full SHA for e04c70a
extensions/typescript-language-features/src/typescriptServiceClient.ts
@@ -731,7 +731,7 @@ export default class TypeScriptServiceClient extends Disposable implements IType
731
if (filepath.startsWith(this.inMemoryResourcePrefix)) {
732
const parts = filepath.match(/^\^\/([^\/]+)\/(.+)$/);
733
if (parts) {
734
- const resource = vscode.Uri.parse(parts[1] + ':' + parts[2]);
+ const resource = vscode.Uri.parse(parts[1] + ':/' + parts[2]);
735
return this.bufferSyncSupport.toVsCodeResource(resource);
736
}
737
0 commit comments