From 874cb067fad62bc79debc985da24d5aeb0af8bc9 Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Wed, 13 Sep 2023 23:54:31 -0700 Subject: [PATCH] add file scope to EventName.EXECUTION_CODE --- src/client/telemetry/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/telemetry/index.ts b/src/client/telemetry/index.ts index f4947cd73f05..c0661d3fa3e6 100644 --- a/src/client/telemetry/index.ts +++ b/src/client/telemetry/index.ts @@ -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). *