aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-02-26 08:49:17 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-02-26 08:49:17 +0000
commit5e00a398f77247814a90a68ca351304381b8e82f (patch)
tree397e3861b7aae4925da11575bcc9ec986ddbe758
parent7c9acf2f834c582d9cad4f7d0679a0697c591432 (diff)
parent5a9a314b1083fab67669472d74b0711ba2ccdbdb (diff)
Merge #899
899: Change default value of highlightingOn to false r=matklad a=vipentti This changes the default value for the vscode setting `rust-analyzer.highlightingOn` to `false`. Since currently the highlighting only supports Zenburn, which people may not be using, I think it makes sense to have this feature disabled by default. This was discussed in #896 Co-authored-by: Ville Penttinen <[email protected]>
-rw-r--r--editors/code/package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index caec5a418..d4ce2ae2c 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -147,7 +147,7 @@
147 "properties": { 147 "properties": {
148 "rust-analyzer.highlightingOn": { 148 "rust-analyzer.highlightingOn": {
149 "type": "boolean", 149 "type": "boolean",
150 "default": true, 150 "default": false,
151 "description": "Highlight Rust code (overrides built-in syntax highlighting)" 151 "description": "Highlight Rust code (overrides built-in syntax highlighting)"
152 }, 152 },
153 "rust-analyzer.enableEnhancedTyping": { 153 "rust-analyzer.enableEnhancedTyping": {