Gary Allen
Gary Allen

Reputation: 1390

Is there an "on debug finished" activation event for VS Code?

I want to activate my extension when the debug session has ended. Is there an activation event for this? I couldn't find one here

Upvotes: 0

Views: 90

Answers (1)

Mark
Mark

Reputation: 182801

Did you look here: https://code.visualstudio.com/api/references/vscode-api#debug

onDidTerminateDebugSession might be what you want.

An event which fires when a debug session has terminated.

Upvotes: 1

Related Questions