From a9ffb1d37326b00c33725a0c0487ac92a40bc121 Mon Sep 17 00:00:00 2001 From: eleanorjboyd Date: Fri, 24 Jan 2025 08:17:58 -0800 Subject: [PATCH 1/2] include debugpy in description --- src/extension/noConfigDebugInit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension/noConfigDebugInit.ts b/src/extension/noConfigDebugInit.ts index 4fdb24bd..40d40315 100644 --- a/src/extension/noConfigDebugInit.ts +++ b/src/extension/noConfigDebugInit.ts @@ -59,7 +59,7 @@ export async function registerNoConfigDebug( const bundledDebugPath = path.join(extPath, 'bundled', 'libs', 'debugpy'); collection.replace('BUNDLED_DEBUGPY_PATH', bundledDebugPath); - envVarCollection.description = l10n.t('Enables use of no-config debugging command in the terminal.'); + envVarCollection.description = l10n.t('Enables use of no-config debugging command, `debugpy `, in the terminal.'); // create file system watcher for the debuggerAdapterEndpointFolder for when the communication port is written const fileSystemWatcher = createFileSystemWatcher(new RelativePattern(tempDirPath, '**/*')); From 9cf605a730921da4ad2d68eb4e68db6ad98deef6 Mon Sep 17 00:00:00 2001 From: eleanorjboyd Date: Fri, 24 Jan 2025 11:07:35 -0800 Subject: [PATCH 2/2] formatting --- src/extension/noConfigDebugInit.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/extension/noConfigDebugInit.ts b/src/extension/noConfigDebugInit.ts index 40d40315..63ced9bb 100644 --- a/src/extension/noConfigDebugInit.ts +++ b/src/extension/noConfigDebugInit.ts @@ -59,7 +59,9 @@ export async function registerNoConfigDebug( const bundledDebugPath = path.join(extPath, 'bundled', 'libs', 'debugpy'); collection.replace('BUNDLED_DEBUGPY_PATH', bundledDebugPath); - envVarCollection.description = l10n.t('Enables use of no-config debugging command, `debugpy `, in the terminal.'); + envVarCollection.description = l10n.t( + 'Enables use of no-config debugging command, `debugpy `, in the terminal.', + ); // create file system watcher for the debuggerAdapterEndpointFolder for when the communication port is written const fileSystemWatcher = createFileSystemWatcher(new RelativePattern(tempDirPath, '**/*'));