dap-mode icon indicating copy to clipboard operation
dap-mode copied to clipboard

Emacs :heart: Debug Adapter Protocol

Results 188 dap-mode issues
Sort by recently updated
recently updated
newest added

After debug session "C-x 1" (delete-other-windows) stop working in any other window except top one. For example if I run "C-x 2" to create to windows, then switch to "bottom"...

I am configuring debugging using `dap-mode` in `Emacs`, and here is my configuration: ``` (use-package! dap-cpptools :ensure t :config (dap-cpptools-setup)) (use-package! dap-ui :hook (dap-mode . dap-ui-mode) :config (setq dap-ui-controls-mode nil...

It's unclear how to properly configure it :( https://emacs-lsp.github.io/dap-mode/page/configuration/

Hey there, Trying to use dap mode with golang, I'm hitting a wall where everytime I go to the next statement the locals window collapses, so I have to navigate...

I tested dap-codelldb on a Crystal lucky project recently. it works on my arch linux with lldb/llvm 18.1.18, crystal 1.13.2, codelldb plugin version 1.10.0 on VSCode 1.93.1 Following is screenshot....

My configuration: ```emacs-lisp (use-package cc-mode :ensure nil :init (require 'dap-lldb) :hook (c++-mode . +cpp-mode) (c++-ts-mode . +cpp-mode) :custom (dap-lldb-debug-program "/opt/homebrew/opt/llvm/bin/lldb-dap") ; this executable does exist :config (defun +cpp-mode () (setq-local...

I got no body in a response with `success` status ``` Sending: { "command": "source", "arguments": { "sourceReference": 0 }, "type": "request", "seq": 6 } Received: { "seq": 17, "type":...

I can pause at a breakpoint and check that certain variables have their correct values, but I'm not getting any output in the dap-mode output buffer from the Write-Host statements...