branch: externals/consult
commit db8452187c5eca08e9ee8b98c3f8b529d663820c
Author: Daniel Mendler <m...@daniel-mendler.de>
Commit: Daniel Mendler <m...@daniel-mendler.de>

    Do not use hashed symbols for remappings
---
 consult-selectrum.el | 2 +-
 consult-vertico.el   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/consult-selectrum.el b/consult-selectrum.el
index 442e3f9..305bdd8 100644
--- a/consult-selectrum.el
+++ b/consult-selectrum.el
@@ -96,7 +96,7 @@ SPLIT is the splitter function."
 (advice-add #'consult-completing-read-multiple :around 
#'consult-selectrum--crm-adv)
 (advice-add #'consult--completion-filter :around 
#'consult-selectrum--filter-adv)
 (advice-add #'consult--split-setup :around 
#'consult-selectrum--split-setup-adv)
-(define-key consult-async-map [remap selectrum-insert-current-candidate] 
#'selectrum-next-page)
+(define-key consult-async-map [remap selectrum-insert-current-candidate] 
'selectrum-next-page)
 
 (provide 'consult-selectrum)
 ;;; consult-selectrum.el ends here
diff --git a/consult-vertico.el b/consult-vertico.el
index b8945d9..98f8e99 100644
--- a/consult-vertico.el
+++ b/consult-vertico.el
@@ -48,7 +48,7 @@
 
 (add-hook 'consult--completion-candidate-hook #'consult-vertico--candidate)
 (add-hook 'consult--completion-refresh-hook #'consult-vertico--refresh)
-(define-key consult-async-map [remap vertico-insert] #'vertico-next-group)
+(define-key consult-async-map [remap vertico-insert] 'vertico-next-group)
 
 (provide 'consult-vertico)
 ;;; consult-vertico.el ends here

Reply via email to