-
Notifications
You must be signed in to change notification settings - Fork 250
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
LSP: Can't "command + click" (go to definition) to noir stdlib files #7469
Comments
Duplicate of #3721 The main issue to do this is that the standard library is located in the I think Rust stores the standard library source code somewhere when you install it. It would be nice if Noir did the same, because then you'd be able to jump there. I also considered somehow implementing this with LSP virutal files... except that there's no such thing in LSP, it's a VSCode-only thing and it's kind of hard to implement. |
We bundle the stdlib files as our installation tool is a bash script so we can't ensure integrity of these. |
Thanks for the detailed replies!
This would be great. If I use any other external dependency in my noir project, that dependency gets stored somewhere on my machine (somewhere in |
Feature request:
If I create a Noir project, I can command+click to go to definitions within my project, but if I use a function or struct from the stdlib, I can't command+click into it.
E.g. It'd be nice to be able to jump to
std::embedded_curve_ops::EmbeddedCurvePoint
and look around that code, without having to manually search for it.The text was updated successfully, but these errors were encountered: