From 461eeb5fbce27a3cb0200e5bd7677a09cce5ba3b Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Thu, 20 Jul 2023 17:37:11 -0400 Subject: [PATCH] fix(credo,nextls): add trace setting Fixes #34 --- package.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/package.json b/package.json index f31b434..0dcee59 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,17 @@ "default": "latest", "markdownDescription": "Specifies the version of **Credo Language Server**.\n\nDefaults to `latest`." }, + "elixir-tools.credo.trace.server": { + "type": "string", + "scope": "window", + "enum": [ + "off", + "messages", + "verbose" + ], + "default": "off", + "description": "Traces the communication between VS Code and the Next LS." + }, "elixir-tools.nextls.enable": { "type": "boolean", "default": false, @@ -79,6 +90,17 @@ "type": "string", "default": "latest", "markdownDescription": "Specifies the version of **Next LS**.\n\nDefaults to `latest`." + }, + "elixir-tools.nextls.trace.server": { + "type": "string", + "scope": "window", + "enum": [ + "off", + "messages", + "verbose" + ], + "default": "off", + "description": "Traces the communication between VS Code and the Next LS." } } },