Skip to content

Commit b555c93

Browse files
authored
Register debugpy as a python debugProvider (#4702)
1 parent 7251869 commit b555c93

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ export async function activateInternal(context: vscode.ExtensionContext, perfSta
103103
// These don't actually overwrite "node", "python", etc. - they just add to it
104104
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('node', nodeDebugProvider));
105105
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('python', pythonDebugProvider));
106+
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('debugpy', pythonDebugProvider));
106107
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('java', javaDebugProvider));
107108
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('ballerina', ballerinaDebugProvider));
108109
context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider('PowerShell', powershellDebugProvider));

0 commit comments

Comments
 (0)