Executes the current program line, then halts. If the executed program line calls another routine, the debugger steps into the routine and halts after executing the first instruction within it.
F7
Step Over
Executes the current program line, then halts. If the executed program line calls another routine, the debugger will not step into it. The whole routine will be executed and the debugger halts at the first instruction following the call.
F8
Step Out
Executes all remaining program lines within the subroutine. The debugger halts immediately upon exiting the subroutine.
Ctrl + F8
Run To Cursor
Executes the program until reaching the cursor position.
F4
Toggle Breakpoint
Toggle breakpoints option sets new breakpoints or removes those already set at the current cursor position.