summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Pettersson <daniel@dpettersson.net>2026-05-02 12:43:57 +0200
committerDaniel Pettersson <daniel@dpettersson.net>2026-05-02 12:44:13 +0200
commitf49763227a1e5c05ab3038ee788bce46fe41402b (patch)
tree3e3b58085a81192f390a735191ee5f0dd882e1fd
parent48b3db3c6220399f71ea1c9cb13cd93833523723 (diff)
Cosmetic fix indetation
-rw-r--r--dape.el26
1 files changed, 13 insertions, 13 deletions
diff --git a/dape.el b/dape.el
index b181db8..4fb893e 100644
--- a/dape.el
+++ b/dape.el
@@ -222,21 +222,21 @@
command-args ("--interpreter=dap")
:request "launch"
:stopAtBeginningOfMainSubprogram nil)))
- `((go-gdb-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
+ `((go-gdb-test ,@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'"
- (expand-file-name "__binary.bin" temporary-file-directory)) ;; compile without optimizations
- :request "launch"
- :program (expand-file-name "__binary.bin" temporary-file-directory)
- :args [])))
+ 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
+ modes (go-mode go-ts-mode)
+ command-cwd (file-name-directory (buffer-file-name))
+ compile (format "go build -o %s -gcflags='all=-N -l'"
+ (expand-file-name "__binary.bin" temporary-file-directory)) ;; compile without optimizations
+ :request "launch"
+ :program (expand-file-name "__binary.bin" temporary-file-directory)
+ :args [])))
(godot
modes (gdscript-mode)
port 6006