Skip to content

Commit

Permalink
fix: It's vscoq-language-server.trace.server, not vscoq.trace.server
Browse files Browse the repository at this point in the history
  • Loading branch information
cpitclaudel committed Jan 8, 2025
1 parent 26f3f1f commit 4e7b548
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 4e7b548

Please sign in to comment.