From 0cf1ff558136ca2230f287d28ba13070c6e7d008 Mon Sep 17 00:00:00 2001 From: Terminal <32599364+TerminalFi@users.noreply.github.com> Date: Mon, 23 Dec 2024 08:44:11 -0600 Subject: [PATCH 1/2] Update LSP-copilot.sublime-settings --- LSP-copilot.sublime-settings | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/LSP-copilot.sublime-settings b/LSP-copilot.sublime-settings index b348b55..20e0846 100644 --- a/LSP-copilot.sublime-settings +++ b/LSP-copilot.sublime-settings @@ -37,7 +37,9 @@ // The (Jinja2) template of the status bar text which is inside the parentheses `(...)`. // See https://jinja.palletsprojects.com/templates/ "status_text": "{% if is_copilot_ignored %}{{ is_copilot_ignored }}{% elif is_waiting %}{{ is_waiting }}{% elif server_version %}v{{ server_version }}{% endif %}", - "telemetry": false, + "telemetry": { + "telemetryLevel": null + }, }, // ST4 configuration "selector": "source | text | embedding" From a24b33f6415884ba5374b00bfe0532ca114efcfe Mon Sep 17 00:00:00 2001 From: Terminal <32599364+TerminalFi@users.noreply.github.com> Date: Mon, 23 Dec 2024 08:58:48 -0600 Subject: [PATCH 2/2] Update sublime-package.json --- sublime-package.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sublime-package.json b/sublime-package.json index 2645817..df0fdf1 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -113,9 +113,14 @@ "type": "string" }, "telemetry": { - "default": false, "markdownDescription": "Enables Copilot telemetry requests for `Accept` and `Reject` completions.", - "type": "boolean" + "type": "object", + "items": { + "telemetryLevel": { + "markdownDescription": "Level of Telemetry to be sent. (null, 'all')", + "type": "string" + } + } } } }