I am using find-file with vertico. After running find-file and typing filename and when I press <TAB> it selects the current line.
TAB runs the command vertico-insert (found in vertico-map), which is an
interactive byte-compiled Lisp function in ‘vertico.el’.
It is bound to TAB.
(vertico-insert)
Instead, is it possible to bing <TAB> as to toggle inside the list of find filenames?

(define-key vertico-map (kbd "<tab>") 'vertico-next)– roomworoof Apr 28 '23 at 12:14(vertico-insert):-( – alper Apr 28 '23 at 12:58