mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
Filter vscode delegate command events (#13832)
This commit is contained in:
@@ -33,7 +33,8 @@ export class SqlTelemetryContribution extends Disposable implements IWorkbenchCo
|
||||
'tab',
|
||||
'selectNextSuggestion'].some(id => id === e.commandId) &&
|
||||
// Events from src\vs\editor\contrib\wordOperations\wordOperations.ts
|
||||
!e.commandId.startsWith('cursor')) {
|
||||
!e.commandId.startsWith('cursor') &&
|
||||
!e.commandId.startsWith('_vscode_delegate')) {
|
||||
telemetryService.sendActionEvent(TelemetryView.Shell, 'adsCommandExecuted', e.commandId);
|
||||
}
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user