emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/hyperdrive 0af765ab01: Change: (h/complete-hyperdrive) Use


From: ELPA Syncer
Subject: [nongnu] elpa/hyperdrive 0af765ab01: Change: (h/complete-hyperdrive) Use transient menu drive as current
Date: Mon, 19 Aug 2024 04:00:33 -0400 (EDT)

branch: elpa/hyperdrive
commit 0af765ab019912b5a0bbdd91529bc51745d48f42
Author: Joseph Turner <joseph@ushin.org>
Commit: Joseph Turner <joseph@ushin.org>

    Change: (h/complete-hyperdrive) Use transient menu drive as current
    
    Now if h/menu-hyperdrive is open, h/complete-hyperdrive will return
    its hyperdrive.
---
 hyperdrive-lib.el | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/hyperdrive-lib.el b/hyperdrive-lib.el
index 4f8c20c201..628d89c429 100644
--- a/hyperdrive-lib.el
+++ b/hyperdrive-lib.el
@@ -1175,11 +1175,16 @@ case, when PREDICATE, only offer hyperdrives matching 
it."
     (setf predicate #'always))
 
   ;; Return current drive when appropriate.
-  (when-let* (((not force-prompt))
-              (h/current-entry)
-              (current-hyperdrive (he/hyperdrive h/current-entry))
-              ((funcall predicate current-hyperdrive)))
-    (cl-return-from h/complete-hyperdrive current-hyperdrive))
+  (unless force-prompt
+    ;; If transient menu is open, use that as the current hyperdrive.
+    (when-let* ((obj (transient-active-prefix '(h/menu-hyperdrive)))
+                (transient-hyperdrive (oref obj scope))
+                ((funcall predicate transient-hyperdrive)))
+      (cl-return-from h/complete-hyperdrive transient-hyperdrive))
+    (when-let* ((h/current-entry)
+                (current-hyperdrive (he/hyperdrive h/current-entry))
+                ((funcall predicate current-hyperdrive)))
+      (cl-return-from h/complete-hyperdrive current-hyperdrive)))
 
   ;; Otherwise, prompt for drive.
   (let* ((current-hyperdrive (and h/current-entry



reply via email to

[Prev in Thread] Current Thread [Next in Thread]