We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to make ivy not list the #*#, .* and *~ files when using find-file with ivy-mode enabled?
#*#
.*
*~
find-file
ivy-mode
Just like ido, is it possible to not list them by default, but auto-complete them if the user wants to?
ido
Here is an example use case:
.gitignore
M-x find-file
.giti
TAB
The text was updated successfully, but these errors were encountered:
You can do it using :matcher, see the implementation of counsel-git-grep. But then you'd have to call your own custom find-file-1.
:matcher
counsel-git-grep
find-file-1
Sorry, something went wrong.
efd74b8
Thanks. I'll probably make counsel-find-file-ignore-regexp not hide anything by default in the future, so that it's less surprising.
counsel-find-file-ignore-regexp
Thanks for implementing this; I hadn't yet got a chance to look into this.
No branches or pull requests
Is there a way to make ivy not list the
#*#
,.*
and*~
files when usingfind-file
withivy-mode
enabled?Just like
ido
, is it possible to not list them by default, but auto-complete them if the user wants to?Here is an example use case:
.gitignore
should not be listed when I doM-x find-file
.giti
and then hitTAB
it should autocomplete it.The text was updated successfully, but these errors were encountered: