debug layer
Table of ContentsClose
2. Install¶
To use this configuration layer, add it to your ~/.spacemacs
. You will need to
add debug
to the existing dotspacemacs-configuration-layers
list in this
file.
2.1. Enable additional debuggers¶
Language specific debuggers are added by the respective layers. If you want to
add additional debuggers, add them to the debug-additional-debuggers
variable.
Make sure that your debugger is compatible by checking here.
(setq-default dotspacemacs-configuration-layers '((debug :variables debug-additional-debuggers '("remake"))))
3. Key bindings¶
3.1. Major Mode¶
Key binding | Description |
---|---|
SPC m d d |
open cmd buffer |
3.2. Debugger¶
Key binding | Description |
---|---|
bb |
set break |
bc |
clear break |
bd |
delete break |
bs |
disable break |
be |
enable break |
c |
continue |
i |
step into |
J |
jump to current line |
o |
step out |
q |
quit debug |
r |
restart |
s |
step over |
S |
goto cmd buffer |
v |
eval variable |