We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f840c59 commit 63a1252Copy full SHA for 63a1252
src/wakatime.ts
@@ -818,7 +818,9 @@ export class WakaTime {
818
private async syncAIHeartbeats(): Promise<void> {
819
if (!this.dependencies.isCliInstalled()) return;
820
821
- const args = ['--sync-ai-activity'];
+ const user_agent =
822
+ this.editorName + '/' + vscode.version + ' vscode-wakatime/' + this.extension.version;
823
+ const args = ['--sync-ai-activity', '--plugin', Utils.quote(user_agent)];
824
825
if (this.isMetricsEnabled) args.push('--metrics');
826
0 commit comments