summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dape.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/dape.el b/dape.el
index 4fb893e..2065e18 100644
--- a/dape.el
+++ b/dape.el
@@ -222,14 +222,14 @@
command-args ("--interpreter=dap")
:request "launch"
:stopAtBeginningOfMainSubprogram nil)))
- `((go-gdb-test ,@gdb-common
+ `((gdb-go-test ,@gdb-common
modes (go-mode go-ts-mode)
command-cwd (file-name-directory (buffer-file-name))
compile (format "go test -c -o %s -gcflags='all=-N -l'"
(expand-file-name "__test.bin" temporary-file-directory)) ;; compile without optimizations
:program (expand-file-name "__test.bin" temporary-file-directory)
:args [])
- (go-gdb ,@gdb-common
+ (gdb-go ,@gdb-common
modes (go-mode go-ts-mode)
command-cwd (file-name-directory (buffer-file-name))
compile (format "go build -o %s -gcflags='all=-N -l'"