-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
manual: remove suggestion of rust-project.json example #17144
Conversation
The manual has been linking to the repo https://github.com/rust-analyzer/rust-project.json-example/tree/master This repo does not contain a rust-project.json, does not appear to have _ever_ contained a rust-project.json, and my bug report about this has gone untouched: rust-analyzer/rust-project.json-example#4 Since I can't figure out an example, this commit removes the link pending better documentation.
That repo has an example of the third option, just like it was pointed out in rust-analyzer/rust-project.json-example#4 (comment). |
That seems like an example of how to write a vscode configuration file. Is this section intended to be vscode-specific? Perhaps it would be worth telling readers to look in the |
It's literally that. It's not Code-specific, every LSP client will support changing the server settings. But the syntax depends on the client, unfortunately. |
I wonder if we can make a simple CLI thing for r-a that turns a cargo project into a |
Also there is https://json.schemastore.org/rust-project.json which might help (I dont remember if we have docs for rust-project.json) |
We have https://rust-analyzer.github.io/manual.html#non-cargo-based-projects, which may or may not be up-to-date. |
I'll merge this, I am not too fond of that example, especially because that third option isn't meant to be written manually anyways. |
☀️ Test successful - checks-actions |
The manual has been linking to the repo
https://github.com/rust-analyzer/rust-project.json-example/tree/master
This repo does not contain a rust-project.json, does not appear to have ever contained a rust-project.json, and my bug report about this has gone untouched: rust-analyzer/rust-project.json-example#4
Since I can't figure out an example, this commit removes the link pending better documentation.