Skip to content

Commit

Permalink
Merge pull request #974 from cpitclaudel/cpc/fix-trace-setting
Browse files Browse the repository at this point in the history
Fix incorrect reference to vscoq.trace.server
  • Loading branch information
rtetley authored Jan 13, 2025
2 parents 64beb79 + bb726bd commit 36f5a39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ After installation and activation of the extension:
#### Coq configuration
* `"vscoq.path": ""` -- specify the path to `vscoqtop` (e.g. `path/to/vscoq/bin/vscoqtop`)
* `"vscoq.args": []` -- an array of strings specifying additional command line arguments for `vscoqtop` (typically accepts the same flags as `coqtop`)
* `"vscoq.trace.server": off | messages | verbose` -- Toggles the tracing of communications between the server and client
* `"vscoq-language-server.trace.server": off | messages | verbose` -- Toggles the tracing of communications between the server and client

#### Memory management (since >= 2.1.7)
* `"vscoq.memory.limit: int` -- specifies the memory limit (in Gb) over which when a user closes a tab, the corresponding document state is discarded in the server to free up memory. Defaults to 4Gb.
Expand Down
5 changes: 3 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,16 @@
"title": "Coq configuration",
"type": "object",
"properties": {
"vscoq.trace.server": {
"vscoq-language-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"compact",
"verbose"
],
"default": "messages",
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"vscoq.path": {
Expand Down

0 comments on commit 36f5a39

Please sign in to comment.