diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/debugging.md | 2 | ||||
-rw-r--r-- | docs/user/manual.adoc | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/docs/dev/debugging.md b/docs/dev/debugging.md index 59a83f7d7..8c48fd5a1 100644 --- a/docs/dev/debugging.md +++ b/docs/dev/debugging.md | |||
@@ -53,7 +53,7 @@ To apply changes to an already running debug process, press <kbd>Ctrl+Shift+P</k | |||
53 | 53 | ||
54 | - A list of running processes should appear. Select the `rust-analyzer` from this repo. | 54 | - A list of running processes should appear. Select the `rust-analyzer` from this repo. |
55 | 55 | ||
56 | - Navigate to `crates/rust-analyzer/src/main_loop.rs` and add a breakpoint to the `on_task` function. | 56 | - Navigate to `crates/rust-analyzer/src/main_loop.rs` and add a breakpoint to the `on_request` function. |
57 | 57 | ||
58 | - Go back to the `[Extension Development Host]` instance and hover over a Rust variable and your breakpoint should hit. | 58 | - Go back to the `[Extension Development Host]` instance and hover over a Rust variable and your breakpoint should hit. |
59 | 59 | ||
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index 7e8adcdb7..b9d907a4a 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc | |||
@@ -366,6 +366,13 @@ Cursor position or selection is signified by `┃` character. | |||
366 | 366 | ||
367 | include::./generated_assists.adoc[] | 367 | include::./generated_assists.adoc[] |
368 | 368 | ||
369 | == Diagnostics | ||
370 | |||
371 | While most errors and warnings provided by rust-analyzer come from the `cargo check` integration, there's a growing number of diagnostics implemented using rust-analyzer's own analysis. | ||
372 | These diagnostics don't respect `#[allow]` or `#[deny]` attributes yet, but can be turned off using the `rust-analyzer.diagnostics.enable`, `rust-analyzer.diagnostics.enableExperimental` or `rust-analyzer.diagnostics.disabled` settings. | ||
373 | |||
374 | include::./generated_diagnostic.adoc[] | ||
375 | |||
369 | == Editor Features | 376 | == Editor Features |
370 | === VS Code | 377 | === VS Code |
371 | 378 | ||