diff --git a/src/vs/workbench/contrib/debug/electron-browser/rawDebugSession.ts b/src/vs/workbench/contrib/debug/electron-browser/rawDebugSession.ts index 1609ee2e67b..fc272dd2d6f 100644 --- a/src/vs/workbench/contrib/debug/electron-browser/rawDebugSession.ts +++ b/src/vs/workbench/contrib/debug/electron-browser/rawDebugSession.ts @@ -444,7 +444,10 @@ export class RawDebugSession { goto(args: DebugProtocol.GotoArguments): Promise { if (this.capabilities.supportsGotoTargetsRequest) { - return this.send('goto', args); + return this.send('goto', args).then(res => { + this.fireSimulatedContinuedEvent(args.threadId); + return res; + }); } return Promise.reject(new Error('goto is not supported')); }