GoLand
A smart IDE optimized for Go development, achieving efficient Go programming with fast code completion and refactoring
Debug shortcuts for efficiently identifying and fixing Go application bugs with breakpoint setting and step execution
Ctrl+F8
Toggle Line Breakpoint
Sets or removes a breakpoint on the current line.
💡 Hint: F8 = Breakpoint
🎯 Quickly set/unset breakpoints to efficiently manage debug points
Shift+F9
Debug
Runs the current configuration in debug mode.
💡 Hint: Shift + F9 = Debug
🎯 Start program in debug mode to investigate problem causes in detail
F8
Step Over
Executes the current line and moves to the next.
💡 Hint: F8 = Step
🎯 Execute current line and proceed to next to check process flow sequentially
F7
Step Into
Steps into the method.
💡 Hint: F7 = Into
🎯 Step into functions to check detailed processing content
F9
Resume Program
Resumes program execution until the next breakpoint.
💡 Hint: F9 = Resume
🎯 Continue program execution until next breakpoint
Alt+F8
Evaluate Expression
Evaluates an expression during debugging.
💡 Hint: Alt + F8 = Evaluate
🎯 Evaluate expressions during debugging to check variable values and calculation results in real-time
Shift+F10
Run
Runs the current configuration.
💡 Hint: Shift + F10 = Run
🎯 Run program in normal mode to quickly check behavior