dape icon indicating copy to clipboard operation
dape copied to clipboard

Debug Adapter Protocol for Emacs

Results 70 dape issues
Sort by recently updated
recently updated
newest added

Hi, I need to make dape attach to a remote dlv session which has a local tunnel at port 40000. I tried the following configs to attach to, but without...

Instead of having the `simulator-id` and and` app-buindle-id `in my **init.el** Would it be possible to something like this instead? ``` (require 'dape) (dape-launch-debug-session :simulator-id "" :app-bundle-id "com.mycompany.app") ``` So...

"./" not work(can not find program), :program and cwd both used relative path,

Native `dlv` is not supported on all platforms, but `gdb` has pretty decent `go` support that works for most cases. Here is my snippet that allowed me to debug go...

My dape is configured as follows: `(use-package dape :ensure t :config (setq dape-debug t) (add-to-list 'dape-configs '(debugpy modes (python-ts-mode python-mode) command "python3" command-args ("-Xfrozen_modules=off" "-m" "debugpy.adapter") :type "python" ;; :request...

I can see the output of stdout in *dape-repl*, how about add an option to show stderr output in *dape-reple*

enhancement

I've searched the web, and can not find a solution to integrate dape with pytest. Can anyone give me some ideas about the workflow for testing and debugging? Thanks.

Hello, I'm using `straight.el` for package management, Recently, `dape` is not usable on my installation because of these lines: https://github.com/svaante/dape/blob/3cd8d4204753f411fad8ca1801de04566d2f6643/dape.el#L58-L60 The `jsonrpc` version detection code above supposes that the package...