Skip to content

Commit 530359c

Browse files
authored
Merge pull request #226 from TerminalFi/fix/Telemetry
Update LSP-copilot.sublime-settings
2 parents 7ac8884 + a24b33f commit 530359c

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

LSP-copilot.sublime-settings

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737
// The (Jinja2) template of the status bar text which is inside the parentheses `(...)`.
3838
// See https://jinja.palletsprojects.com/templates/
3939
"status_text": "{% if is_copilot_ignored %}{{ is_copilot_ignored }}{% elif is_waiting %}{{ is_waiting }}{% elif server_version %}v{{ server_version }}{% endif %}",
40-
"telemetry": false,
40+
"telemetry": {
41+
"telemetryLevel": null
42+
},
4143
},
4244
// ST4 configuration
4345
"selector": "source | text | embedding"

sublime-package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,14 @@
113113
"type": "string"
114114
},
115115
"telemetry": {
116-
"default": false,
117116
"markdownDescription": "Enables Copilot telemetry requests for `Accept` and `Reject` completions.",
118-
"type": "boolean"
117+
"type": "object",
118+
"items": {
119+
"telemetryLevel": {
120+
"markdownDescription": "Level of Telemetry to be sent. (null, 'all')",
121+
"type": "string"
122+
}
123+
}
119124
}
120125
}
121126
}

0 commit comments

Comments
 (0)