You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goal: Set the current line as next execution line. (Similar to set next statement in Visual Studio)
It's possible to move the program counter to a desired code line.
It's possible to execute the code line where the program counter (instruction pointer) now points too.
If the program counter is set to
-> an invalid code line it's moved to the next valid code line.
-> a code line outside of the current scope, it's moved back and warning should be displayed (could just be a notification).
Extend context menu of editor with jump to cursor option.
Extend context menu of editor margin with jump to cursor option.
The option is visible only during the debugging session and if the debug adapter supports this.
Fixes issue eclipse-theia#14500
Signed-off-by: Nandish Mahadevaiah <nandish.mahadevaiah@mvtec.com>
Feature Description:
Goal: Set the current line as next execution line. (Similar to set next statement in Visual Studio)
Below link shows how the feature works.
https://code.visualstudio.com/updates/v1_36#_jump-to-cursor
The text was updated successfully, but these errors were encountered: