|
191 | 191 | "properties": {
|
192 | 192 | "lsp.diagnostics": {
|
193 | 193 | "type": "boolean",
|
194 |
| - "description": "Whether to show diagnostics from `cargo check`" |
| 194 | + "markdownDescription": "Whether to show diagnostics from `cargo check`" |
195 | 195 | },
|
196 | 196 | "completion.insertion.add-call-parenthesis": {
|
197 | 197 | "type": "boolean",
|
|
203 | 203 | },
|
204 | 204 | "completion.enable-postfix": {
|
205 | 205 | "type": "boolean",
|
206 |
| - "description": "Whether to show postfix snippets like `dbg`, `if`, `not`, etc." |
| 206 | + "markdownDescription": "Whether to show postfix snippets like `dbg`, `if`, `not`, etc." |
207 | 207 | },
|
208 | 208 | "call-info.full": {
|
209 | 209 | "type": "boolean",
|
210 | 210 | "description": "Show function name and docs in parameter hints"
|
211 | 211 | },
|
212 | 212 | "notifications.workspace-loaded": {
|
213 | 213 | "type": "boolean",
|
214 |
| - "description": "Whether to show `workspace loaded` message" |
| 214 | + "markdownDescription": "Whether to show `workspace loaded` message" |
215 | 215 | },
|
216 | 216 | "notifications.cargo-toml-not-found": {
|
217 | 217 | "type": "boolean",
|
218 |
| - "description": "Whether to show `can't find Cargo.toml` error message" |
| 218 | + "markdownDescription": "Whether to show `can't find Cargo.toml` error message" |
219 | 219 | }
|
220 | 220 | }
|
221 | 221 | },
|
|
251 | 251 | "rust-analyzer.cargo-watch.enable": {
|
252 | 252 | "type": "boolean",
|
253 | 253 | "default": true,
|
254 |
| - "description": "Run `cargo check` for diagnostics on save" |
| 254 | + "markdownDescription": "Run `cargo check` for diagnostics on save" |
255 | 255 | },
|
256 | 256 | "rust-analyzer.cargo-watch.arguments": {
|
257 | 257 | "type": "array",
|
258 | 258 | "items": {
|
259 | 259 | "type": "string"
|
260 | 260 | },
|
261 |
| - "description": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", |
| 261 | + "markdownDescription": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", |
262 | 262 | "default": []
|
263 | 263 | },
|
264 | 264 | "rust-analyzer.cargo-watch.command": {
|
265 | 265 | "type": "string",
|
266 |
| - "description": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )", |
| 266 | + "markdownDescription": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )", |
267 | 267 | "default": "check"
|
268 | 268 | },
|
269 | 269 | "rust-analyzer.cargo-watch.allTargets": {
|
270 | 270 | "type": "boolean",
|
271 |
| - "description": "Check all targets and tests (will be passed as `--all-targets`)", |
| 271 | + "markdownDescription": "Check all targets and tests (will be passed as `--all-targets`)", |
272 | 272 | "default": true
|
273 | 273 | },
|
274 | 274 | "rust-analyzer.trace.server": {
|
|
320 | 320 | "rust-analyzer.cargoFeatures.noDefaultFeatures": {
|
321 | 321 | "type": "boolean",
|
322 | 322 | "default": false,
|
323 |
| - "description": "Do not activate the `default` feature" |
| 323 | + "markdownDescription": "Do not activate the `default` feature" |
324 | 324 | },
|
325 | 325 | "rust-analyzer.cargoFeatures.allFeatures": {
|
326 | 326 | "type": "boolean",
|
|
0 commit comments