If I run `consult-dir` from `find-file` and a selected path is too long, vertico's input is truncated and doesn't work properly until I press `TAB`. It could be fixed with `consult--completion-refresh-hook` like that: ``` (when new-dir (if consult-dir-shadow-filenames (insert "/" new-full-name) (delete-minibuffer-contents) (insert new-full-name)) (run-hooks 'consult--completion-refresh-hook))) ``` But I'm not sure if it's a vertico bug or works as intended, through, because plain minibuffer works without the fix.