branch: externals/dape
commit a0ae5d6a445c119caeb3da930effece839109bf0
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Fix command calling with keyword for next like commands
---
dape.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dape.el b/dape.el
index 19d35a7f93..0e9a767111 100644
--- a/dape.el
+++ b/dape.el
@@ -2317,19 +2317,19 @@ symbol `dape-connection'."
"Step one line (skip functions)
CONN is inferred for interactive invocations."
(interactive (list (dape--live-connection 'stopped)))
- (dape--next-like-command conn "next"))
+ (dape--next-like-command conn :next))
(defun dape-step-in (conn)
"Step into function/method. If not possible behaves like `dape-next'.
CONN is inferred for interactive invocations."
(interactive (list (dape--live-connection 'stopped)))
- (dape--next-like-command conn "stepIn"))
+ (dape--next-like-command conn :stepIn))
(defun dape-step-out (conn)
"Step out of function/method. If not possible behaves like `dape-next'.
CONN is inferred for interactive invocations."
(interactive (list (dape--live-connection 'stopped)))
- (dape--next-like-command conn "stepOut"))
+ (dape--next-like-command conn :stepOut))
(defun dape-continue (conn)
"Resumes execution.