aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <[email protected]>2018-09-29 20:27:41 +0100
committerAdolfo OchagavĂ­a <[email protected]>2018-09-29 20:27:41 +0100
commit26108dde1caf958acd693ae5d43f7d1ad8db7f0c (patch)
treefdf02d9f5970766e0bab43696296a419534e555e /editors/code/package.json
parentbaaf027da04445c18e6d50b0956b234d33c1a2f1 (diff)
Add a setting to disable custom syntax highlighting
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 0cfba5db6..305d6eaf1 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -109,6 +109,17 @@
109 "when": "editorTextFocus && editorLangId == rust" 109 "when": "editorTextFocus && editorLangId == rust"
110 } 110 }
111 ], 111 ],
112 "configuration": {
113 "type": "object",
114 "title": "Rust Analyzer configuration",
115 "properties": {
116 "ra-lsp.highlightingOn": {
117 "type": "boolean",
118 "default": true,
119 "description": "Highlight Rust code (overrides built-in syntax highlighting)"
120 }
121 }
122 },
112 "problemMatchers": [ 123 "problemMatchers": [
113 { 124 {
114 "name": "rustc", 125 "name": "rustc",