-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ctrl+click into a relative filepath results in error #146853
Comments
This originates from language support to find the reference for a symbol: vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.ts Lines 170 to 172 in 12e6b0b
I am not sure if this is coming from TypeScript, or possibly AnyCode, assigning some folks. Btw easy to reproduce running out of sources with remote hub extension installed, even on desktop. |
What is also interesting is that all the other imports (such as |
For microsoft#146853 Make sure we include the uri authority when serializing and then restoring the file paths we send to TSServer (similarly to how we already handle the uri scheme)
Pushed a fix for the authority part: #148940 However TS still returns a path without a file extension in this case. Will keep open to continue investigation but may depend on microsoft/TypeScript#47600 |
For #146853 Make sure we include the uri authority when serializing and then restoring the file paths we send to TSServer (similarly to how we already handle the uri scheme)
This comment was marked as spam.
This comment was marked as spam.
This comment has been minimized.
This comment has been minimized.
This no longer repros 🎉 |
I repro this in v0.20.0 of GitHub Repositories so I don't think this is a regression.
VS Code appears to be trying to stat the
vscode-vfs
URI for this file, but theauthority
is missing, and Remote Repositories looks up the provider for a givenvscode-vfs
URI by checking the authority, so this is an invalidvscode-vfs
URI. @bpasero do you happen to know what might be happening here?The text was updated successfully, but these errors were encountered: