diff --git a/src/infoview.ts b/src/infoview.ts index 5228c96..851f75b 100644 --- a/src/infoview.ts +++ b/src/infoview.ts @@ -200,7 +200,7 @@ export class InfoProvider implements Disposable { this.handleServerRequest(message); return; case 'reveal': - await this.revealEditorPosition(Uri.parse(message.loc.file_name), message.loc.line, message.loc.column); + await this.revealEditorPosition(Uri.file(message.loc.file_name), message.loc.line, message.loc.column); return; case 'sync_pin': this.pins = message.pins;