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 <villem.penttinen@gmail.com>
This commit is contained in:
bors[bot] 2019-02-26 08:49:17 +00:00
commit 5e00a398f7

View File

@ -147,7 +147,7 @@
"properties": {
"rust-analyzer.highlightingOn": {
"type": "boolean",
"default": true,
"default": false,
"description": "Highlight Rust code (overrides built-in syntax highlighting)"
},
"rust-analyzer.enableEnhancedTyping": {