branch: externals/embark
commit c575a46bdc93f16476f5d1dc329ee724c13457ac
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Reorder target finders
    
    The completion list candidate takes precendence if there is one. Only if no
    candidate has been selected, take the top minibuffer candidate.
---
 embark.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/embark.el b/embark.el
index b0207a9c6b..374319587e 100644
--- a/embark.el
+++ b/embark.el
@@ -164,10 +164,10 @@ or a list of such symbols."
                              (repeat :tag "Keymaps" variable))))
 
 (defcustom embark-target-finders
-  '(embark-target-top-minibuffer-candidate
+  '(embark-target-completion-list-candidate
+    embark-target-top-minibuffer-candidate
     embark-target-active-region
     embark-target-collect-candidate
-    embark-target-completion-list-candidate
     embark-target-text-heading-at-point
     embark-target-bug-reference-at-point
     embark-target-flymake-at-point

Reply via email to