aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2018-12-20 12:05:41 +0000
committerDJMcNab <[email protected]>2018-12-20 12:05:41 +0000
commit39861a4e15cf8cfed69f336c7178bb4b480fe3a3 (patch)
treec0b90e5ed07fcca57fcf94a029d24c0023428474 /editors/code
parentc96011833c7017505a9de21f35e5c7dece7446d3 (diff)
Support tracing lsp requests.
TODO: Debug why decorations are sent even when highlightingOn is disabled This makes the log volume so high its impossible to work with anyway
Diffstat (limited to 'editors/code')
-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 d53e44b21..2989a7016 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -131,6 +131,17 @@
131 "type": "boolean", 131 "type": "boolean",
132 "default": true, 132 "default": true,
133 "description": "Highlight Rust code (overrides built-in syntax highlighting)" 133 "description": "Highlight Rust code (overrides built-in syntax highlighting)"
134 },
135 "ra-lsp.trace.server": {
136 "type": "string",
137 "scope": "window",
138 "enum": [
139 "off",
140 "messages",
141 "verbose"
142 ],
143 "default": "off",
144 "description": "Trace requests to the ra-lsp server"
134 } 145 }
135 } 146 }
136 }, 147 },