IDE Atom - cruisechang/wiki-golang GitHub Wiki
Shortcuts
terminal-plus
- open last terminal ctrl + `
- open new terminal ctrl + shift + t
platformio-ide-terminal
- open last terminal ctrl + `
- Insert and run selected text ctrl-enter
delve (debug)
- f5 runs the current package (dlv debug)
- ctrl-f5 runs the current package tests (dlv test)
- shift-f5 restarts the current delve session (r / restart)
- f6 stops delve (exit / quit / q)
- f8 continue the execution (c / continue)
- f9 toggle breakpoint
- f10 step over to next source line (n / next)
- f11 step into functions (s / step)
- cmd-k cmd-g (mac) / ctrl-k ctrl-g (others) toggles the main panel