diff options
| author | Daniel Pettersson <daniel@dpettersson.net> | 2026-05-02 12:43:57 +0200 |
|---|---|---|
| committer | Daniel Pettersson <daniel@dpettersson.net> | 2026-05-02 12:44:13 +0200 |
| commit | f49763227a1e5c05ab3038ee788bce46fe41402b (patch) | |
| tree | 3e3b58085a81192f390a735191ee5f0dd882e1fd | |
| parent | 48b3db3c6220399f71ea1c9cb13cd93833523723 (diff) | |
Cosmetic fix indetation
| -rw-r--r-- | dape.el | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -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 |
