Replies: 2 comments 1 reply
-
|
The function consult-preview-at-point-mode had been deprecated and removed a while after. You should remove it from your configuration. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
It's nowhere explicitly in my configuration. |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Description
Version 20260502.950 available on MELPA adds
consult-preview-at-point-modeto
completion-list-mode-hookviaconsult--default-completion-list-preview-setup,but this function was removed in commit 5cd9646.
This causes the following error whenever a Completions buffer is displayed:
(error "Autoloading file .../consult.elc failed to define function
consult-preview-at-point-mode")
Steps to reproduce
Expected behavior
No error.
Workaround
Define a no-op stub in early-init.el:
(defun consult-preview-at-point-mode (&rest _) nil)
Environment
Beta Was this translation helpful? Give feedback.
All reactions