hi all,
i have a pretty vanilla vertico configuration
(use-package vertico
:ensure t
:config
(vertico-mode))
in a directory, i have sub-directories organized like so:
.
|-- dot-emacs.git
|-- doomemacs
`-- vanilla.config
now, a C-x C-f in the above directory does not display the ‘dot-emacs.git’ directory at all.
how do i fix it ?
– thank you !
You must log in or register to comment.
I had reported a bug report here: https://github.com/minad/vertico/issues/229
Adjust completion-ignored-extensions accordingly.
thank you kindly ! i just did this
(setq completion-ignored-extensions '("^.git/"))
which is what i typically want, and that does the right thing as well.
have you tried removing .git/ from completion-ignored-extensions? maybe you can use cl-delete to get rid of it. could require cl-seq feature.