tools/debugger: Add rust binding for dap-lldb (#1677)

* Add Rust binding to dap-mode in :tools debugger
* Fix missing ).
This commit is contained in:
Julian DeMille 2019-08-17 16:03:57 -04:00 committed by Henrik Lissner
parent 0cf669ab92
commit 3e7bcda04a

View file

@ -34,7 +34,8 @@
((:lang . java) lsp-java dap-java) ((:lang . java) lsp-java dap-java)
((:lang . php) php-mode dap-php) ((:lang . php) php-mode dap-php)
((:lang . python) python dap-python) ((:lang . python) python dap-python)
((:lang . ruby) enh-ruby-mode dap-ruby))) ((:lang . ruby) enh-ruby-mode dap-ruby)
((:lang . rust) rust-mode dap-lldb)))
(when (doom-module-p (caar module) (cdar module) '+lsp) (when (doom-module-p (caar module) (cdar module) '+lsp)
(with-eval-after-load (nth 1 module) (with-eval-after-load (nth 1 module)
(mapc #'require (cddr module))))) (mapc #'require (cddr module)))))