eclipse-theia / theia

Eclipse Theia is a cloud & desktop IDE framework implemented in TypeScript.
http://theia-ide.org
Eclipse Public License 2.0
20.1k stars 2.5k forks source link

Jump to cursor #14500

Open mahadevaiahn opened 6 days ago

mahadevaiahn commented 6 days ago

Feature Description:

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).

Below link shows how the feature works. https://code.visualstudio.com/updates/v1_36#_jump-to-cursor

mahadevaiahn commented 3 days ago

I would like to take a look at this ticket.