When using the @codingame/monaco-vscode-search-result-default-extension and open search results in editor, then hover over a file name and click on the follow link

The following error appears:

In the console, it shows the following error:
Uncaught (in promise) Error: Unable to read file '/test.js' (Error: Unable to resolve nonexistent file '/test.js')
at VHe.restoreReadError (main.common-7DLNmK_d.js:1427:23935)
at VHe.doReadFileStream (main.common-7DLNmK_d.js:1427:23642)
at async WHe.doRead (main.common-7DLNmK_d.js:1427:78870)
at async WHe.readStream (main.common-7DLNmK_d.js:1427:78625)
at async ame.resolveFromFile (main.common-7DLNmK_d.js:1427:57239)
at async ame.resolve (main.common-7DLNmK_d.js:1427:55401)
at async FHe.doResolve (main.common-7DLNmK_d.js:1427:73374)
at async sKe.doCreateReferencedObject (main.common-7DLNmK_d.js:1734:6398)
at async Xjt.acquire (main.common-7DLNmK_d.js:29:3253)
at async oKe.createModelReference (main.common-7DLNmK_d.js:1734:8629)
I tried to do some debugging and find the core issue, my guess here is that the ~ is being ignored while it should be converted to the workspace uri.
I also found (by manually changing the editor search results) that if we remove the ~/ from the file path, vscode would be able to locate the file correctly.
When using the
@codingame/monaco-vscode-search-result-default-extensionand open search results in editor, then hover over a file name and click on the follow linkThe following error appears:
In the console, it shows the following error:
I tried to do some debugging and find the core issue, my guess here is that the
~is being ignored while it should be converted to the workspace uri.I also found (by manually changing the editor search results) that if we remove the
~/from the file path, vscode would be able to locate the file correctly.