Open BooAA opened 3 years ago
This happens too with selectrum. Single line shown with no input, populated as it should upon introducing a character.
This is fixed in Emacs 29. It can be worked around on older Emacsen: https://github.com/minad/vertico/issues/115#issuecomment-973753577
Below is what I used to reproduce the bug:
(setq mini-frame-standalone t) ;; this is a buggy option and I enable it intentionally
describe-function
ordescribe-variable
, then you may see something like this:This is not 100% reproducible, you might have to try several times.
find-file
, then you'll get no candidate displayed when no input.I use edebug to trace
mini-frame--display
and find problem occurs at this line. Actually, child frame displays normally at first but shrinks to height 1 immediately, so this may be a bug related tomini-frame-resize
.Reference: https://github.com/minad/vertico/issues/34