What variable or additional mode controls the order of candidates in vertico
? I think by default it shows most recently used first. Is it possible to force it to show the candidates in the same order as in the list given to it.
So, in an org buffer with named source code blocks, I would like the candidates to be listed in the same order as in the file.
This works fine:
(ido-completing-read "Prompt: " (reverse (org-babel-src-block-names)))
This changes the order. Since I use vertico
it opens up a vertico
window.
(completing-read "Prompt: " (reverse (org-babel-src-block-names)))
I am using Doom Emacs. But I assume there should be a general variable that controls this behaviour.
I've tried deleting savehist
file. Didn't help.