summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pettersson <daniel@dpettersson.net>2026-05-02 13:03:50 +0200
committerDaniel Pettersson <daniel@dpettersson.net>2026-05-02 13:04:34 +0200
commit1cbe4efdc1e11011df72fb3cf65bce248cec0083 (patch)
treeb0c7cbfc698c917edf61a4b5fcfe3b0717d28720
parentf49763227a1e5c05ab3038ee788bce46fe41402b (diff)
Align new go gdb names with rest
-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'"