dap-mode
dap-mode copied to clipboard
Emacs :heart: Debug Adapter Protocol
According to the [DAP specification](https://microsoft.github.io/debug-adapter-protocol/specification#Events_Output), if a `category` is not specified for an event, `console` should be assumed. In `dap-mode` - unless I'm misusing it -, it seems like `console`...
HI there, I've managed to figure out how to use dap-mode with PHP today. I'm very excited about being able to debug PHP, Elixir, and Typescript in emacs! One thing...
The DAP protocol specifies methods for disassembling code and for debugging the latter. dap-mode should support that, since that feature would benefit C/C++ developers, especially in embedded. This sounds fun...
Does the dap-mode has LaTeX support, i.e., used by the settings similar to the following: ```emacs-lisp (use-package dap-mode) (use-package dap-latex) ``` Regards, HY
When I am using debugpy with a template that has `:module "pytest"`, breakpoints that I am setting with `dap-mode` are ignored. When I am using a template with `:module nil`...
I am facing an issue similar to #396. `dap-debug` template 'Run pytest (at point)' fails with `wrong-type-argument hash-table-p nil`. emacs 28.0.50 dap-mode-20210506.1934 lsp-mode-20210508.628 Backtrace: ``` Debugger entered--Lisp error: (wrong-type-argument hash-table-p...
I'm having the same problem as bugs #7 and #31. This is the backtrace: > Debugger entered--Lisp error: (wrong-type-argument stringp nil) make-network-process(:name "localhost(9222)" :buffer nil :host "localhost" :service nil :nowait...
I assigned JUNIT_CLASS_PATH as below `export JUNIT_CLASS_PATH=/Users/ztlevi/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.7.0`. Which contains following jar. But running `(dap-java-run-test-class)` still pops error. ``` jupiter/junit-jupiter-api/5.7.0 via ☕ v1.8.0 took 1m3s ➜ ls _remote.repositories junit-jupiter-api-5.7.0-sources.jar.sha1 junit-jupiter-api-5.7.0.pom.sha1 junit-jupiter-api-5.7.0-javadoc.jar...
Is it possible to step into C++ code from a python script? Is there an example configuration file that demonstrates this? Basically is it possible to do this mixed code...
Hello! One minor complaint I have about dap-mode is that the hydra that controls the debugger state (e.g. lets you do next, in, disconnect etc) is open even when you...