diff options
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 6827c822b..7a4a93e30 100644 --- a/editors/code/package.json +++ b/editors/code/package.json | |||
@@ -191,7 +191,7 @@ | |||
191 | "properties": { | 191 | "properties": { |
192 | "lsp.diagnostics": { | 192 | "lsp.diagnostics": { |
193 | "type": "boolean", | 193 | "type": "boolean", |
194 | "description": "Whether to show diagnostics from `cargo check`" | 194 | "markdownDescription": "Whether to show diagnostics from `cargo check`" |
195 | }, | 195 | }, |
196 | "completion.insertion.add-call-parenthesis": { | 196 | "completion.insertion.add-call-parenthesis": { |
197 | "type": "boolean", | 197 | "type": "boolean", |
@@ -203,7 +203,7 @@ | |||
203 | }, | 203 | }, |
204 | "completion.enable-postfix": { | 204 | "completion.enable-postfix": { |
205 | "type": "boolean", | 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 | "call-info.full": { | 208 | "call-info.full": { |
209 | "type": "boolean", | 209 | "type": "boolean", |
@@ -211,11 +211,11 @@ | |||
211 | }, | 211 | }, |
212 | "notifications.workspace-loaded": { | 212 | "notifications.workspace-loaded": { |
213 | "type": "boolean", | 213 | "type": "boolean", |
214 | "description": "Whether to show `workspace loaded` message" | 214 | "markdownDescription": "Whether to show `workspace loaded` message" |
215 | }, | 215 | }, |
216 | "notifications.cargo-toml-not-found": { | 216 | "notifications.cargo-toml-not-found": { |
217 | "type": "boolean", | 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 | }, |
@@ -256,24 +256,24 @@ | |||
256 | "rust-analyzer.cargo-watch.enable": { | 256 | "rust-analyzer.cargo-watch.enable": { |
257 | "type": "boolean", | 257 | "type": "boolean", |
258 | "default": true, | 258 | "default": true, |
259 | "description": "Run `cargo check` for diagnostics on save" | 259 | "markdownDescription": "Run `cargo check` for diagnostics on save" |
260 | }, | 260 | }, |
261 | "rust-analyzer.cargo-watch.arguments": { | 261 | "rust-analyzer.cargo-watch.arguments": { |
262 | "type": "array", | 262 | "type": "array", |
263 | "items": { | 263 | "items": { |
264 | "type": "string" | 264 | "type": "string" |
265 | }, | 265 | }, |
266 | "description": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", | 266 | "markdownDescription": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", |
267 | "default": [] | 267 | "default": [] |
268 | }, | 268 | }, |
269 | "rust-analyzer.cargo-watch.command": { | 269 | "rust-analyzer.cargo-watch.command": { |
270 | "type": "string", | 270 | "type": "string", |
271 | "description": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )", | 271 | "markdownDescription": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )", |
272 | "default": "check" | 272 | "default": "check" |
273 | }, | 273 | }, |
274 | "rust-analyzer.cargo-watch.allTargets": { | 274 | "rust-analyzer.cargo-watch.allTargets": { |
275 | "type": "boolean", | 275 | "type": "boolean", |
276 | "description": "Check all targets and tests (will be passed as `--all-targets`)", | 276 | "markdownDescription": "Check all targets and tests (will be passed as `--all-targets`)", |
277 | "default": true | 277 | "default": true |
278 | }, | 278 | }, |
279 | "rust-analyzer.trace.server": { | 279 | "rust-analyzer.trace.server": { |
@@ -325,7 +325,7 @@ | |||
325 | "rust-analyzer.cargoFeatures.noDefaultFeatures": { | 325 | "rust-analyzer.cargoFeatures.noDefaultFeatures": { |
326 | "type": "boolean", | 326 | "type": "boolean", |
327 | "default": false, | 327 | "default": false, |
328 | "description": "Do not activate the `default` feature" | 328 | "markdownDescription": "Do not activate the `default` feature" |
329 | }, | 329 | }, |
330 | "rust-analyzer.cargoFeatures.allFeatures": { | 330 | "rust-analyzer.cargoFeatures.allFeatures": { |
331 | "type": "boolean", | 331 | "type": "boolean", |