6

Let's say I put a breakpoint in the first line.
I see no option to simply skip the 2nd line and jump straight to the print statement.
Is there any hidden option? If not, what is the most non-intrusive way?
Commenting out the lines I don't wanna run is not elegant.

a = 3
a = 4
print(a)
Chris
  • 951
  • 10
  • 26

1 Answers1

10

You can do right click on the third statement and Jump to Cursor. This is a manual action though... I don't think there is a mode to only run breakpointed lines...

Gigioz
  • 367
  • 5
  • 19