Skip to content

Commit

Permalink
add file scope to EventName.EXECUTION_CODE
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Sep 14, 2023
1 parent 143ed5a commit 874cb06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/telemetry/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -821,11 +821,11 @@ export interface IEventNamePropertyMapping {
*/
[EventName.EXECUTION_CODE]: {
/**
* Whether the user executed a file in the terminal or just the selected text.
* Whether the user executed a file in the terminal or just the selected text or line by shift+enter.
*
* @type {('file' | 'selection')}
*/
scope: 'file' | 'selection';
scope: 'file' | 'selection' | 'line';
/**
* How was the code executed (through the command or by clicking the `Run File` icon).
*
Expand Down

0 comments on commit 874cb06

Please sign in to comment.