RubyMine 2017.2 Help

Running and Debugging

FunctionShortcutUse this shortcut to...
RunShift+F10Run a program.
Choose configuration and runShift+Alt+F10Quickly select run/debug configuration and run or edit it.
RerunCtrl+F5Repeat execution with the same settings, with the same tab of the Run tool window having the focus.
Rerun without loosing the focus in the editorShift+F10Repeat execution with the same settings, with the same tab of the editor having the focus.
DebugShift+F9Debug a program.
Choose configuration and debugShift+Alt+F9Quickly select run/debug configuration and debug or edit it.
Step OverF8Step to the next line in the current file. See Stepping Through the Program.
Step Into F7 Step to the next executed line. See Stepping Through the Program.
Smart Step Into Shift+F7 Select the method to step in, if the current line contains multiple method call expressions. See Choosing a Method to Step Into.
Step Out Shift+F8 Step to a first executed line after returning from the current method. See Stepping Through the Program.
Force Step Over Shift+Alt+F8 Run until the next line in this method or file, skipping the methods referenced at the current execution point and ignoring breakpoints. See Stepping Through the Program.
Force Step Into Shift+Alt+F7 Steps into the method called in the current execution point even if this method is to be skipped. See Stepping Through the Program.
Run to Cursor Alt+F9 Run to the line where the caret is located. See Stepping Through the Program.
Force Run To Cursor Ctrl+Alt+F9 Run to the line where the caret is located, ignoring breakpoints. See Stepping Through the Program.
Resume Program F9 Resume program execution.
Stop Program Shift+F2 Terminate a debugging session.
Evaluate Expression Alt+F8 Evaluate an arbitrary expression.
Quick Evaluate Expression Ctrl+Alt+F8 Evaluate an arbitrary expression without calling Evaluate Expression dialog.
Toggle Breakpoint Ctrl+F8 Toggle breakpoint at the current line.
View Breakpoints Ctrl+Shift+F8 View/manage all breakpoints.
Last modified: 26 October 2017

See Also

Reference:

Concepts: