dape
- Description
- Debug Adapter Protocol for Emacs
- Latest
- dape-0.16.0.tar (.sig), 2024-Oct-11, 310 KiB
- Maintainer
- Daniel Pettersson <daniel@dpettersson.net>
- Website
- https://github.com/svaante/dape
- Browse ELPA's repository
- CGit or Gitweb
- Badge
To install this package from Emacs, use package-install
or list-packages
.
Full description
Dape
is a debug adapter client for Emacs. The debug adapter protocol, much like its more well-known counterpart, the language server protocol, aims to establish a common API for programming tools. However, instead of functionalities such as code completions, it provides a standardized interface for debuggers.
To begin a debugging session, invoke the dape
command. In the minibuffer prompt, enter a debug adapter configuration name from dape-configs
.
For complete functionality, make sure to enable eldoc-mode
in your source buffers and repeat-mode
for more pleasant key mappings.
1. Features
- Batteries included support (
describe-variable
dape-configs
) - Log breakpoints
- Conditional breakpoints
- Variable explorer
- Variable watch
- Variable hover with
eldoc
- REPL
- gdb-mi.el like interface
- Memory editor with
hexl
- Integration with
compile
- Debug adapter configuration ergonomics
- No external dependencies outside of core Emacs
With (setq dape-buffer-window-arrangement 'right)
:
And with (setq dape-buffer-window-arrangement 'gud)
+ corfu
as completion-in-region-function
:
With minibuffer
adapter configuration hints:
Screenshots taken with standard-light.
2. Configuration
Dape
includes pre-defined debug adapter configurations for various programming languages. Refer to dape-configs
for more details. If dape
doesn't include a configuration suitable for your needs, you can implement your own.
(use-package dape :preface ;; By default dape shares the same keybinding prefix as `gud' ;; If you do not want to use any prefix, set it to nil. ;; (setq dape-key-prefix "\C-x\C-a") :hook ;; Save breakpoints on quit ;; ((kill-emacs . dape-breakpoint-save) ;; Load breakpoints on startup ;; (after-init . dape-breakpoint-load)) :config ;; Turn on global bindings for setting breakpoints with mouse ;; (dape-breakpoint-global-mode) ;; Info buffers to the right ;; (setq dape-buffer-window-arrangement 'right) ;; Info buffers like gud (gdb-mi) ;; (setq dape-buffer-window-arrangement 'gud) ;; (setq dape-info-hide-mode-line nil) ;; Pulse source line (performance hit) ;; (add-hook 'dape-display-source-hook 'pulse-momentary-highlight-one-line) ;; Showing inlay hints ;; (setq dape-inlay-hints t) ;; Save buffers on startup, useful for interpreted languages ;; (add-hook 'dape-start-hook (lambda () (save-some-buffers t t))) ;; Kill compile buffer on build success ;; (add-hook 'dape-compile-hook 'kill-buffer) ;; Projectile users ;; (setq dape-cwd-fn 'projectile-project-root) ) ;; Enable repeat mode for more ergonomic `dape' use (use-package repeat :config (repeat-mode))
3. Differences with dap-mode
Dape has no dependencies outside of core Emacs packages, and tries to use get as much out of them possible.
Dape takes a slightly different approach to configuration.
Dape
does not supportlaunch.json
files, if per project configuration is needed usedir-locals
anddape-command
.Dape
enhances ergonomics within the minibuffer by allowing users to modify or add PLIST entries to an existing configuration using options. For exampledape-config :cwd default-directory :program "/home/user/b.out" compile "gcc -g -o b.out main.c"
.- No magic, no special variables like
${workspaceFolder}
. Instead, functions and variables are resolved before starting a new session. - Tries to envision how debug adapter configurations would be implemented in Emacs if vscode never existed.
4. Supported debug adapters
In theory all debug adapters should be compatible with Dape
.
4.1. Javascript - vscode-js-*
- Install
node
- Visit https://github.com/microsoft/vscode-js-debug/releases/ and download the asset
js-debug-dap-<version>.tar.gz
- Unpack
mkdir -p ~/.emacs.d/debug-adapters && tar -xvzf js-debug-dap-<version>.tar.gz -C ~/.emacs.d/debug-adapters
For more information see OPTIONS.md.
4.2. Go - dlv
See delve installation. For more information see documentation.
4.3. C, C++, Rust, and more - GDB
Ensure that your GDB version is 14.1 or newer. For further details, consult the documentation.
4.4. C, C++ and Rust - codelldb
4.5. C and C++ - cpptools
Download latesnd unpack vsix
file with your favorite unzipper.
- Download latest
vsix
release for your platformcpptools-<platform>-<os>.vsix
- Unpack
mkdir -p ~/.emacs.d/debug-adapters && unzip cpptools-<os>-<platform>.vsix -d ~/.emacs.d/debug-adapters/cpptools
- Then
chmod +x ~/.emacs.d/debug-adapters/cpptools/extension/debugAdapters/bin/OpenDebugAD7
- And
chmod +x ~/.emacs.d/debug-adapters/cpptools/extension/debugAdapters/lldb-mi/bin/lldb-mi
See options.
4.6. C, C++ and Rust - lldb-dap
- Install lldb-dap for your platform
4.6.1. Example for MacOS using homebrew
- Install the
llvm
keg:brew install llvm
- Prepend the
llvm
path to thePATH
variable ($(brew --prefix --installed llvm)/bin
) M-x dape
and pass in arguments of interest- To pass arguments, use
:args ["arg1" "arg2" ..]
- To use a different program instead of
a.out
(e.g., for Rust), use:program "target/debug/<crate_name>"
- To pass arguments, use
4.7. Python - debugpy
Install debugpy with pip pip install debugpy
See options.
4.8. Godot
Configure debug adapter port under "Editor" > "Editor Settings" > "Debug Adapter".
4.9. Dart - flutter
See for installation https://docs.flutter.dev/get-started/install
4.10. C# - netcoredbg
See https://github.com/Samsung/netcoredbg for installation
4.11. Ruby - rdbg
Install with gem install debug
.
See https://github.com/ruby/debug for more information
4.12. Java - JDTLS with Java Debug Server plugin
See https://github.com/eclipse-jdtls/eclipse.jdt.ls for installation of JDTLS.
See https://github.com/microsoft/java-debug for installation of the Java Debug Server plugin.
The Java config depends on Eglot running JDTLS with the plugin prior to starting Dape.
Extend eglot-server-programs
as follows to have JDTLS load the plugin:
(add-to-list 'eglot-server-programs `((java-mode java-ts-mode) . ("jdtls" :initializationOptions (:bundles ["/PATH/TO/java-debug/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.plugin-VERSION.jar"]))))
4.13. PHP - Xdebug
- Install and setup
Xdebug
see instructions - Install
node
- Download latest
vsix
release of DAP adapter forXdebug
php-debug-<version>.vsix
- Unpack
mkdir -p ~/.emacs.d/debug-adapters && unzip php-debug-<version>.vsix -d ~/.emacs.d/debug-adapters/php-debug
4.14. OCaml - ocamlearlybird
Install with opam install earlybird
.
- Point
:program
to bytecode file - Place breakpoints inside of
_build/default/*
See ocamlearlybird for more information.
4.15. Bash - bash-debug
- Install
node
- Download latest
vsix
release of DAP adapterbash-debug-<version>.vsix
- Unpack
mkdir -p ~/.emacs.d/debug-adapters && unzip bash-debug-<version>.vsix -d ~/.emacs.d/debug-adapters/bash-debug
See bash-debug for more information.
4.16. Other untested adapters
If you find a working configuration for any other debug adapter please submit a PR.
See microsofts list for other adapters, your mileage will vary.
5. Contribute
dape
is subject to the same copyright assignment policy as GNU Emacs.
Any legally significant contributions can only be merged after the author has completed their paperwork. See Contributor's Frequently Asked Questions (FAQ) for more information.
6. Performance
Some minor gains to performance in the debugger can be achieved in changing Emacs configuration values for process interaction and garbage collection.
6.1. gc-cons-threshold
This variable controls the frequency of garbage collection in Emacs. Too high a value will lead to increased system memory pressure and longer stalls, and too low a value will result in extra interruptions and context switches (poor performance).
According to GNU Emacs Maintainer Eli Zaretskii:
My suggestion is to repeatedly multiply gc-cons-threshold by 2 until you stop seeing significant improvements in responsiveness, and in any case not to increase by a factor larger than 100 or somesuch. If even a 100-fold increase doesn't help, there's some deeper problem with the Lisp code which produces so much garbage, or maybe GC is not the reason for slowdown.
Abiding the upper end of that advice, you can try to set gc-cons-threshold
to 100x the original value:
(setq gc-cons-threshold 80000000) ;; original value * 100
6.2. read-process-output-max
The default read-process-output-max
of 4096 bytes may inhibit performance to some degree, also.
6.2.1. Linux
On Linux, you should be able to set it up to about 1mb
.
To check the max value, check the output of:
cat /proc/sys/fs/pipe-max-size
To set it:
(setq read-process-output-max (* 1024 1024)) ;; 1mb
6.2.2. Mac OS
For Mac OS, there isn't an easy way to see the operating system pipe-max-size.
It's probably about 64kb
.
(setq read-process-output-max (* 64 1024)) ;; 64k
6.2.3. Windows
There doesn't seem to be a limit for Windows.
You can try 1mb
.
(setq read-process-output-max (* 1024 1024)) ;; 1mb
7. Bugs and issues
Before reporting any issues (setq dape-debug t)
and take a look at *dape-repl*
buffer. Please share your *dape-repl*
and *dape-connection events*
in the buffer contents with the bug report.
The master
branch is used as an development branch and releases on elpa should be more stable so in the mean time use elpa if the bug is a breaking you workflow.
8. Acknowledgements
Big thanks to João Távora for the input and jsonrpc; the project wouldn't be where it is without João.
Old versions
dape-0.15.0.tar.lz | 2024-Aug-25 | 60.1 KiB |
dape-0.14.0.tar.lz | 2024-Jul-14 | 59.6 KiB |
dape-0.13.0.tar.lz | 2024-Jun-30 | 58.8 KiB |
dape-0.12.0.tar.lz | 2024-May-26 | 58.3 KiB |
dape-0.11.1.tar.lz | 2024-May-12 | 57.8 KiB |
dape-0.11.0.tar.lz | 2024-May-02 | 56.1 KiB |
dape-0.10.0.tar.lz | 2024-Apr-04 | 53.7 KiB |
dape-0.9.0.tar.lz | 2024-Mar-31 | 53.2 KiB |
dape-0.8.1.tar.lz | 2024-Mar-13 | 52.1 KiB |
dape-0.7.0.tar.lz | 2024-Feb-23 | 48.3 KiB |
dape-0.6.1.tar.lz | 2024-Feb-12 | 47.3 KiB |
dape-0.6.0.tar.lz | 2024-Feb-10 | 47.3 KiB |
dape-0.5.0.tar.lz | 2024-Jan-23 | 46.3 KiB |
dape-0.4.0.tar.lz | 2024-Jan-17 | 45.6 KiB |
dape-0.3.0.tar.lz | 2023-Dec-22 | 41.1 KiB |
dape-0.2.2.tar.lz | 2023-Dec-05 | 39.0 KiB |
dape-0.2.tar.lz | 2023-Dec-05 | 38.8 KiB |