diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/lsp-features.md | 4 | ||||
-rw-r--r-- | docs/user/README.md | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/dev/lsp-features.md b/docs/dev/lsp-features.md index d3e79b8be..00b0867d7 100644 --- a/docs/dev/lsp-features.md +++ b/docs/dev/lsp-features.md | |||
@@ -41,7 +41,7 @@ This list documents LSP features, supported by rust-analyzer. | |||
41 | - trigger characters: `:`, `.` | 41 | - trigger characters: `:`, `.` |
42 | - [x] [textDocument/hover](https://microsoft.github.io/language-server-protocol/specification#textDocument_hover) | 42 | - [x] [textDocument/hover](https://microsoft.github.io/language-server-protocol/specification#textDocument_hover) |
43 | - [x] [textDocument/signatureHelp](https://microsoft.github.io/language-server-protocol/specification#textDocument_signatureHelp) | 43 | - [x] [textDocument/signatureHelp](https://microsoft.github.io/language-server-protocol/specification#textDocument_signatureHelp) |
44 | - trigger characters: `(`, `,`, `)` | 44 | - trigger characters: `(`, `,` |
45 | - [ ] [textDocument/declaration](https://microsoft.github.io/language-server-protocol/specification#textDocument_declaration) | 45 | - [ ] [textDocument/declaration](https://microsoft.github.io/language-server-protocol/specification#textDocument_declaration) |
46 | - [x] [textDocument/definition](https://microsoft.github.io/language-server-protocol/specification#textDocument_definition) | 46 | - [x] [textDocument/definition](https://microsoft.github.io/language-server-protocol/specification#textDocument_definition) |
47 | - [x] [textDocument/typeDefinition](https://microsoft.github.io/language-server-protocol/specification#textDocument_typeDefinition) | 47 | - [x] [textDocument/typeDefinition](https://microsoft.github.io/language-server-protocol/specification#textDocument_typeDefinition) |
@@ -58,7 +58,7 @@ This list documents LSP features, supported by rust-analyzer. | |||
58 | - rust-analyzer.run | 58 | - rust-analyzer.run |
59 | - rust-analyzer.analyzerStatus | 59 | - rust-analyzer.analyzerStatus |
60 | - [x] [textDocument/codeLens](https://microsoft.github.io/language-server-protocol/specification#textDocument_codeLens) | 60 | - [x] [textDocument/codeLens](https://microsoft.github.io/language-server-protocol/specification#textDocument_codeLens) |
61 | - [ ] [textDocument/documentLink](https://microsoft.github.io/language-server-protocol/specification#codeLens_resolve) | 61 | - [x] [codeLens/resolve](https://microsoft.github.io/language-server-protocol/specification#codeLens_resolve) |
62 | - [ ] [documentLink/resolve](https://microsoft.github.io/language-server-protocol/specification#documentLink_resolve) | 62 | - [ ] [documentLink/resolve](https://microsoft.github.io/language-server-protocol/specification#documentLink_resolve) |
63 | - [ ] [textDocument/documentColor](https://microsoft.github.io/language-server-protocol/specification#textDocument_documentColor) | 63 | - [ ] [textDocument/documentColor](https://microsoft.github.io/language-server-protocol/specification#textDocument_documentColor) |
64 | - [ ] [textDocument/colorPresentation](https://microsoft.github.io/language-server-protocol/specification#textDocument_colorPresentation) | 64 | - [ ] [textDocument/colorPresentation](https://microsoft.github.io/language-server-protocol/specification#textDocument_colorPresentation) |
diff --git a/docs/user/README.md b/docs/user/README.md index 282445722..fa202f06c 100644 --- a/docs/user/README.md +++ b/docs/user/README.md | |||
@@ -122,6 +122,8 @@ host. | |||
122 | "completion.enable-postfix": true, | 122 | "completion.enable-postfix": true, |
123 | // Show notification when workspace is fully loaded | 123 | // Show notification when workspace is fully loaded |
124 | "notifications.workspace-loaded": true, | 124 | "notifications.workspace-loaded": true, |
125 | // Show error when no Cargo.toml was found | ||
126 | "notifications.cargo-toml-not-found": true, | ||
125 | } | 127 | } |
126 | ``` | 128 | ``` |
127 | 129 | ||