Questions tagged [vertico]
10 questions
1
vote
1 answer
How I can use numbers in vertico-indexed-mode?
Emacs 27
I enable vertico-indexed-mode
Here result:
How I can use this numbers (0,1,2,3) ?

a_subscriber
- 3,854
- 1
- 17
- 47
1
vote
1 answer
Order of candidates in vertico or/and completing-read
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…

Arktik
- 932
- 4
- 15
1
vote
1 answer
use vertico completion also in evil's ex-prompt
I am using evil-mode and now want to use vertico for completion. I've got it setup so it works when I hit M-x, C-x C-f, C-x C-b, etc. However, it doesn't work in evil's ex-prompt (the command prompt started by hitting :).
How do i tell vertico to…

laalsaas
- 31
- 3
1
vote
1 answer
Insert path into buffer with vertico.el
I have recently switched from ivy to vertico for the file completion menu system (the new default in doom).
Sometimes I want to insert the full path to a file into the current buffer (for example inserting an image into an org or latex file), and…

Romeo Valentin
- 111
- 4
0
votes
2 answers
How can I bind vertico-insert to toggle in the list?
I am using find-file with vertico. After running find-file and typing filename and when I press it selects the current line.
TAB runs the command vertico-insert (found in vertico-map), which is an
interactive byte-compiled Lisp function in…

alper
- 1,238
- 11
- 30
0
votes
1 answer
Vertico: why are some files not displayed in the minibuffer?
I have noticed that, using vertico, some files are not displayed in the minibuffer by default when executing find-file, and I'm not sure to understand why.
Say that I have three files in a given directory:
.
├── landmarks2.tps
├── landmarks.tps
└──…

Philopolis
- 1,094
- 8
- 14
0
votes
0 answers
Add vertico autocomplete to custom prefix key
I am using vertico for auto complete. When you type M-x you get a nice menu of the available commands.
I would like to add a similar completion to another prefix keybinding (e.g. C-d), so when I press C-d I would see the two commands: deft and…

slaughter98
- 101
- 1
0
votes
0 answers
treemacs window border is drawn over vertico-posframe: how to fix?
I use vertico-posframe to switch buffers. When treemacs is active, the border between the treemacs window and the text window is drawn over posframe with the buffer list:
How can I fix this?

Yuriy Al. Shirokov
- 21
- 3
0
votes
1 answer
How do I call helm in the middle of switch-to-buffer (using vertico)?
Say I'm in the middle of switch-to-buffer (using vertico.el btw), I couldn't find the buffer/file I need. I want to use a key binding to call helm-recentf or helm-locate etc, how should I go about doing that? tried
(use-package vertico
:bind…

SparedWhisle
- 569
- 3
- 13
0
votes
2 answers
How to ignore dired buffers and buffers that begin with * or SPC when switching buffer in Vertico + Consult?
I am currently an ivy user, trying out vertico + consult.
For ivy I am using the following
(defun rit-check-buffer-mode (str mode)
"Check whether the buffer's major mode is `mode'."
(let ((buf (get-buffer str)))
(and buf (eq…