Skip to content
Discussion options

You must be logged in to vote

Thanks, I made this code which does what I want, it gives the same look of ido-vertical-mode:

(set-face-attribute 'vertico-current nil :inherit 'ido-first-match)

(cl-defmethod vertico--format-candidate :around
  (cand prefix suffix index start)
  (setq cand (cl-call-next-method cand prefix suffix index start))
  (concat (if (= vertico--index index)
	      "-> "
	    "   ")
	  cand))

BTW I know you from slim templates, I'm pleasently suprised that you use and contribute to emacs too

Replies: 1 comment 9 replies

Comment options

You must be logged in to vote
9 replies
@ScamChamp
Comment options

Answer selected by ScamChamp
@ScamChamp
Comment options

@minad
Comment options

minad Apr 9, 2025
Maintainer

@ScamChamp
Comment options

@minad
Comment options

minad Apr 9, 2025
Maintainer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #583 on April 09, 2025 11:12.