branch: externals/dape
commit ba815d653d8f12138bf823434afc5bb04735dfdd
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>

    Fix indentation
---
 dape.el | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/dape.el b/dape.el
index 751d313f24..c10bc4b840 100644
--- a/dape.el
+++ b/dape.el
@@ -2220,16 +2220,17 @@ Handles newline."
        (completion-table-dynamic
         (lambda (_str)
           (when-let ((process (dape--live-process t)))
-            (dape--with dape-request (process
-                                      "completions"
-                                      (append
-                                       (when (dape--stopped-threads)
-                                         (list :frameId
-                                               (plist-get 
(dape--current-stack-frame) :id)))
-                                       (list
-                                        :text str
-                                        :column column
-                                        :line 1)))
+            (dape--with dape-request
+                (process
+                 "completions"
+                 (append
+                  (when (dape--stopped-threads)
+                    (list :frameId
+                          (plist-get (dape--current-stack-frame) :id)))
+                  (list
+                   :text str
+                   :column column
+                   :line 1)))
               (setq collection
                     (append
                      collection

Reply via email to