From cb5e68cc3f719438417cfc6af56bc7c05dcaee3c Mon Sep 17 00:00:00 2001 From: Brahim Hadriche Date: Thu, 28 Sep 2023 14:43:44 -0400 Subject: [PATCH] Update comment --- src/DebugConfigurationProvider.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DebugConfigurationProvider.ts b/src/DebugConfigurationProvider.ts index 39430949..5f46cd9a 100644 --- a/src/DebugConfigurationProvider.ts +++ b/src/DebugConfigurationProvider.ts @@ -578,8 +578,8 @@ export interface BrightScriptLaunchConfiguration extends LaunchConfiguration { disableScreenSaver?: boolean; /** - * If true, the remote control will be enabled at the start of the debug session, and disabled at the end of the debug session. - * @default false + * If set, the remote control will be enabled/disabled at the start/end of the debug session, respectively. + * @default { activateOnSessionStart: false, deactivateOnSessionEnd: false } */ remoteControlMode?: { activateOnSessionStart?: boolean; deactivateOnSessionEnd?: boolean }; }