14.4. Toolbar

The toolbar across the top of the dialog collects the debugger’s main actions. Every action has a keyboard shortcut that also works when the focus is inside the script editor.

The standard step controls:

ActionShortcutEffect

Continue

F5

Resume until the next breakpoint.

Step Over

F10

Run the current line and pause on the next line in the same (or outer) stack frame; calls run to completion without pausing inside.

Step Into

F11

Run the current line and pause on the very next Lua line, including lines inside functions called from the current line.

Step Out

Shift+F11

Resume until the current function returns, then pause in the caller. On the outermost Lua frame this behaves like Continue.

The remaining toolbar actions:

Next to the toolbar the dialog header carries the Enabled checkbox; its colored dot mirrors the current debugger state — see Section 14.1, “Introduction”.