Replies: 1 comment 11 replies
-
Well, I now realise it's not a bug, but a little bit of a tragedy :(
(defun consult--customize-get (&optional cmd)
"Get configuration from `consult--customize-alist' for CMD."
(mapcar (lambda (x) (eval x 'lexical))
(alist-get (or cmd this-command) consult--customize-alist))) |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For example, when customizing
consult-find
:Invoking it via extended command yields a prompt of "hello".
Whereas
(call-interactively 'consult-find)
uses the defaults, ignoring the customized version.Beta Was this translation helpful? Give feedback.
All reactions