PyCharm 2016.1 Help Running and Debugging

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+F9 Debug 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 IntoF7Step to the next executed line. See Stepping Through the Program.
Smart Step IntoShift+F7Select the method to step in, if the current line contains multiple method call expressions. See Choosing a Method to Step Into.
Step OutShift+F8Step to a first executed line after returning from the current method. See Stepping Through the Program.
Force Step OverShift+Alt+F8Run 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 IntoShift+Alt+F7Steps into the method called in the current execution point even if this method is to be skipped. See Stepping Through the Program.
Run to CursorAlt+F9Run to the line where the caret is located. See Stepping Through the Program.
Force Run To CursorCtrl+Alt+F9Run to the line where the caret is located, ignoring breakpoints. See Stepping Through the Program.
Resume ProgramF9Resume program execution.
Stop ProgramShift+F2Terminate a debugging session.
Evaluate ExpressionAlt+F8Evaluate an arbitrary expression.
Quick Evaluate ExpressionCtrl+Alt+F8Evaluate an arbitrary expression without calling Evaluate Expression dialog.
Toggle BreakpointCtrl+F8Toggle breakpoint at the current line.
View BreakpointsCtrl+Shift+F8View/manage all breakpoints.

No comments:

Post a Comment