A go debugger for atom using delve.
Either apm install go-debug
or search for go-debug
in the settings.
see https://github.com/derekparker/delve/tree/master/Documentation/installation
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 breakpointf10
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