branch: externals/dape
commit 18dc46cced6564ac3b1072a1409932a866df5b16
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Remove response on runInTerminal request
debugpy crashes on response and it does not seams like any other
adapters requires response either, so lets skip it.
---
dape.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index db9999982f..777df7e1bd 100644
--- a/dape.el
+++ b/dape.el
@@ -1297,7 +1297,8 @@ Starts a new process to run process to be debugged."
buffer
buffer)
(dape--display-buffer buffer))
- (dape--response process (symbol-name command) seq t))
+ ;; For debugpy crashes if we send an response...
+ )
(cl-defmethod dape-handle-request (process (command (eql startDebugging)) seq
arguments)
"Handle startDebugging requests.