12 lines
406 B
EmacsLisp
12 lines
406 B
EmacsLisp
;; Eval Buffer with `M-x eval-buffer' to register the newly created template.
|
|
|
|
(dap-register-debug-template
|
|
"GDB::Run muele"
|
|
(list :type "gdb"
|
|
:request "launch"
|
|
:name "GDB::Run muele"
|
|
:gdbpath "rust-gdb"
|
|
:target "${workspaceFolder}/red/target/debug/red"
|
|
:dap-compilation "cargo build"
|
|
:dap-compilation-dir "${workspaceFolder}"
|
|
:cwd "${workspaceFolder}"))
|