From 16f3a481b0a8e494bbd1b4de42b01edaaf3752f4 Mon Sep 17 00:00:00 2001 From: eleanorjboyd Date: Mon, 27 Jan 2025 11:05:09 -0800 Subject: [PATCH] add link to wiki --- 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 4fdb24b..49f7f9b 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 in the terminal.'); + envVarCollection.description = l10n.t( + 'Enables use of [no-config debugging](https://github.com/microsoft/vscode-python-debugger/wiki/No%E2%80%90Config-Debugging) command in the terminal.', + ); // create file system watcher for the debuggerAdapterEndpointFolder for when the communication port is written const fileSystemWatcher = createFileSystemWatcher(new RelativePattern(tempDirPath, '**/*'));