mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Enable attribute proc macros by default
This commit is contained in:
parent
009e6ceb1d
commit
81891f7abe
3 changed files with 3 additions and 3 deletions
|
@ -143,7 +143,7 @@ config_data! {
|
||||||
diagnostics_warningsAsInfo: Vec<String> = "[]",
|
diagnostics_warningsAsInfo: Vec<String> = "[]",
|
||||||
|
|
||||||
/// Expand attribute macros.
|
/// Expand attribute macros.
|
||||||
experimental_procAttrMacros: bool = "false",
|
experimental_procAttrMacros: bool = "true",
|
||||||
|
|
||||||
/// Controls file watching implementation.
|
/// Controls file watching implementation.
|
||||||
files_watcher: String = "\"client\"",
|
files_watcher: String = "\"client\"",
|
||||||
|
|
|
@ -191,7 +191,7 @@ List of warnings that should be displayed with info severity.
|
||||||
The warnings will be indicated by a blue squiggly underline in code
|
The warnings will be indicated by a blue squiggly underline in code
|
||||||
and a blue icon in the `Problems Panel`.
|
and a blue icon in the `Problems Panel`.
|
||||||
--
|
--
|
||||||
[[rust-analyzer.experimental.procAttrMacros]]rust-analyzer.experimental.procAttrMacros (default: `false`)::
|
[[rust-analyzer.experimental.procAttrMacros]]rust-analyzer.experimental.procAttrMacros (default: `true`)::
|
||||||
+
|
+
|
||||||
--
|
--
|
||||||
Expand attribute macros.
|
Expand attribute macros.
|
||||||
|
|
|
@ -641,7 +641,7 @@
|
||||||
},
|
},
|
||||||
"rust-analyzer.experimental.procAttrMacros": {
|
"rust-analyzer.experimental.procAttrMacros": {
|
||||||
"markdownDescription": "Expand attribute macros.",
|
"markdownDescription": "Expand attribute macros.",
|
||||||
"default": false,
|
"default": true,
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
"rust-analyzer.files.watcher": {
|
"rust-analyzer.files.watcher": {
|
||||||
|
|
Loading…
Reference in a new issue