diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user/README.md | 3 | ||||
-rw-r--r-- | docs/user/features.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/user/README.md b/docs/user/README.md index 439c4e6ae..33dd4f995 100644 --- a/docs/user/README.md +++ b/docs/user/README.md | |||
@@ -59,7 +59,10 @@ for details. | |||
59 | * `rust-analyzer.raLspServerPath`: path to `ra_lsp_server` executable | 59 | * `rust-analyzer.raLspServerPath`: path to `ra_lsp_server` executable |
60 | * `rust-analyzer.enableCargoWatchOnStartup`: prompt to install & enable `cargo | 60 | * `rust-analyzer.enableCargoWatchOnStartup`: prompt to install & enable `cargo |
61 | watch` for live error highlighting (note, this **does not** use rust-analyzer) | 61 | watch` for live error highlighting (note, this **does not** use rust-analyzer) |
62 | * `rust-analyzer.cargo-watch.check-arguments`: cargo-watch check arguments. | ||
63 | (e.g: `--features="shumway,pdf"` will run as `cargo watch -x "check --features="shumway,pdf""` ) | ||
62 | * `rust-analyzer.trace.server`: enables internal logging | 64 | * `rust-analyzer.trace.server`: enables internal logging |
65 | * `rust-analyzer.trace.cargo-watch`: enables cargo-watch logging | ||
63 | 66 | ||
64 | 67 | ||
65 | ## Emacs | 68 | ## Emacs |
diff --git a/docs/user/features.md b/docs/user/features.md index 7173d88e9..3ac99eef1 100644 --- a/docs/user/features.md +++ b/docs/user/features.md | |||
@@ -12,7 +12,7 @@ search. Specifically, | |||
12 | 12 | ||
13 | - `Foo` searches for `Foo` type in the current workspace | 13 | - `Foo` searches for `Foo` type in the current workspace |
14 | - `foo#` searches for `foo` function in the current workspace | 14 | - `foo#` searches for `foo` function in the current workspace |
15 | - `Foo*` searches for `Foo` type among dependencies, excluding `stdlib` | 15 | - `Foo*` searches for `Foo` type among dependencies, including `stdlib` |
16 | - `foo#*` searches for `foo` function among dependencies. | 16 | - `foo#*` searches for `foo` function among dependencies. |
17 | 17 | ||
18 | That is, `#` switches from "types" to all symbols, `*` switches from the current | 18 | That is, `#` switches from "types" to all symbols, `*` switches from the current |