Exclude rust-analyzer.server.path from VS Code's sync feature

By changing the scope of this configuration to `machine-overridible`,
this setting becomes fully local for the VS Code instance the user is
running.

Having this setting excluded from syncing should help avoid
inconveniences for users who have VS Code installed on two different
operating systems, where the paths to the language server binary would
very likely mismatch.
This commit is contained in:
Gianluca Recchia 2021-08-01 12:00:41 +02:00
parent 4118733f33
commit 93433364ab
No known key found for this signature in database
GPG Key ID: 14354796B08C3832

View File

@ -326,6 +326,7 @@
"null",
"string"
],
"scope": "machine-overridable",
"default": null,
"markdownDescription": "Path to rust-analyzer executable (points to bundled binary by default). If this is set, then `#rust-analyzer.updates.channel#` setting is not used"
},