Reputation: 1390
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
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