When the debug timeline view is not loaded in VS Code (it is collapsed for instance), the pull debugsession just does nothing. No error or message.
That is because of this if statement:
|
const item = this.timelineProvider?.getItemFromTimeLineIndex(index ?? - 1); |
|
if (!!item) { |
|
await this.saveRuntimeState(item); |
The command should still work even if the view is hidden. Maybe the command can "launch" the view and make it visible or something similar.
When the debug timeline view is not loaded in VS Code (it is collapsed for instance), the pull debugsession just does nothing. No error or message.
That is because of this
ifstatement:WARDuino-VSCode/src/DebugSession/DebugSession.ts
Lines 398 to 400 in be8fe97
The command should still work even if the view is hidden. Maybe the command can "launch" the view and make it visible or something similar.