diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/README.md | 2 | ||||
-rw-r--r-- | docs/user/manual.adoc | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md index 1b63d8223..76e1da6cf 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md | |||
@@ -348,6 +348,8 @@ To update test data, run with `UPDATE_EXPECTATIONS` variable: | |||
348 | env UPDATE_EXPECTATIONS=1 cargo qt | 348 | env UPDATE_EXPECTATIONS=1 cargo qt |
349 | ``` | 349 | ``` |
350 | 350 | ||
351 | After adding a new inline test you need to run `cargo xtest codegen` and also update the test data as described above. | ||
352 | |||
351 | # Logging | 353 | # Logging |
352 | 354 | ||
353 | Logging is done by both rust-analyzer and VS Code, so it might be tricky to | 355 | Logging is done by both rust-analyzer and VS Code, so it might be tricky to |
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index ea714f49a..0dc1dc2ae 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc | |||
@@ -269,6 +269,10 @@ Gnome Builder currently has support for RLS, and there's no way to configure the | |||
269 | 1. Rename, symlink or copy the `rust-analyzer` binary to `rls` and place it somewhere Builder can find (in `PATH`, or under `~/.cargo/bin`). | 269 | 1. Rename, symlink or copy the `rust-analyzer` binary to `rls` and place it somewhere Builder can find (in `PATH`, or under `~/.cargo/bin`). |
270 | 2. Enable the Rust Builder plugin. | 270 | 2. Enable the Rust Builder plugin. |
271 | 271 | ||
272 | ==== GNOME Builder (Nightly) | ||
273 | |||
274 | https://nightly.gnome.org/repo/appstream/org.gnome.Builder.flatpakref[GNOME Builder (Nightly)] has now native support for `rust-analyzer` out of the box. If the `rust-analyzer` binary is not available, GNOME Builder can install it when opening a Rust source file. | ||
275 | |||
272 | == Non-Cargo Based Projects | 276 | == Non-Cargo Based Projects |
273 | 277 | ||
274 | rust-analyzer does not require Cargo. | 278 | rust-analyzer does not require Cargo. |
@@ -318,6 +322,8 @@ There are tree ways to feed `rust-project.json` to rust-analyzer: | |||
318 | * Specify `"rust-analyzer.linkedProjects": [ "path/to/rust-project.json" ]` in the settings (and make sure that your LSP client sends settings as a part of initialize request). | 322 | * Specify `"rust-analyzer.linkedProjects": [ "path/to/rust-project.json" ]` in the settings (and make sure that your LSP client sends settings as a part of initialize request). |
319 | * Specify `"rust-analyzer.linkedProjects": [ { "roots": [...], "crates": [...] }]` inline. | 323 | * Specify `"rust-analyzer.linkedProjects": [ { "roots": [...], "crates": [...] }]` inline. |
320 | 324 | ||
325 | Relative paths are interpreted relative to `rust-project.json` file location or (for inline JSON) relative to `rootUri`. | ||
326 | |||
321 | See https://github.com/rust-analyzer/rust-project.json-example for a small example. | 327 | See https://github.com/rust-analyzer/rust-project.json-example for a small example. |
322 | 328 | ||
323 | == Features | 329 | == Features |