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 (:map vertico-map
("M-t" . (lambda()(interactive)(vertico-exit)(helm-recentf)))))
but that doesn't work, the code after (vertico-exit) doesn't get called. If I remove (vertico-exit), vertico will hang around. what's the correct way to do this?