Skip to content

Commit

Permalink
register watcher for new debugger type (#15141) (#15146)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Lively <milively@microsoft.com>
  • Loading branch information
amunger and Yoyokrazy authored Feb 7, 2024
1 parent ff8278a commit fe896d4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class DebuggerVariableRegistration implements IExtensionSyncActivationSer
) {}
public activate() {
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory(PYTHON_LANGUAGE, this));
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory('debugpy', this));
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory(pythonKernelDebugAdapter, this));
this.disposables.push(this.debugService.registerDebugAdapterTrackerFactory(pythonIWKernelDebugAdapter, this));
}
Expand Down

0 comments on commit fe896d4

Please sign in to comment.