-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in post-command-hook (vertico--exhibit): (wrong-type-argument stringp nil) #27
Comments
You are probably using an outdated version of Emacs 28. Please check that you are using the latest Vertico version and check the Emacs version you are using. It must be newer than emacs-mirror/emacs@d8e037e. Emacs 27 works too. |
I can confirm this problem goes away with newer Emacs 28. Smooth sailing with Vertico right now! |
@tumashu Did updating fix your issue? Vertico works without issues for me on 27.1 and the current Emacs master. |
seem to solved, :-) |
I encountered the same problem ( I've been using vertico for several days without any problems, but today this error just popped up for no reason. (I don't think I did anything abnormal, maybe pressed Is there anything I can do to help debugging this issue in case I encountered it again? (but since I cannot run any commands involving |
@blahgeek You evaluate the following first to produce a stacktrace: (defun force-debug (func &rest args)
(condition-case e
(apply func args)
((debug error) (signal (car e) (cdr e)))))
(advice-add #'vertico--exhibit :around #'force-debug) With a stack trace it is easier to debug this. Furthermore you should tell me which command is exactly affected by the issue. Anyways - Vertico should get back to normal even if this error occured if you start a new completing-read session. Restarting Emacs is not necessary. I have not seen this issue on Emacs 28. Emacs 28 is already pretty stable, I tested it just a few days ago. |
@minad I also got this error when I press
With git bitsec and I can confirmed that this issue happened at 1a24952 * Colorize truncation ellipsis and later commit of marginalia . So, this issue may be caused by marginalia? |
I encountered this issue again: all commands using vertico (e.g. find-file,
Here's the backtrace:
|
Update: so the problem seems to be in "orderless" package. I did some debugging and the result is very strange:
It seems that the definition of |
0.6 seem no this problem, 0.7 has this problem
The text was updated successfully, but these errors were encountered: