diff --git a/src/system/command.ts b/src/system/command.ts index f78669a..9bf2480 100644 --- a/src/system/command.ts +++ b/src/system/command.ts @@ -93,7 +93,12 @@ export function executeCoreCommand( command: CoreCommands, ...args: T ): Thenable { - if (command != 'setContext' && command !== 'vscode.executeDocumentSymbolProvider') { + if ( + command != 'setContext' && + command !== 'vscode.executeDocumentSymbolProvider' && + command !== 'vscode.diff' && + command !== 'vscode.open' + ) { Container.instance.telemetry.sendEvent('command/core', { command: command }); } return commands.executeCommand(command, ...args);