You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
I want to ignore directories like ".dropbox_" under my home directory while completing with ivy. When I type d (small case, easier to type) with counsel-find-file, the completion list lists installation directories like ".dropbox_" before "Dropbox", which is not what I want. Note that I have the following: (setq case-fold-search t ivy-case-fold-search t).
I get the desired behavior (list Dropbox first) with ido by using ido-ignore-directories. Is there an equivalent in ivy? Otherwise, it might be an useful addition.
The text was updated successfully, but these errors were encountered:
* counsel.el (counsel-find-file-ignore-regexp): Add a recommended value,
all dotfiles.
(counsel--find-file-matcher): When `ivy-text' starts with a dot, don't
use `counsel-find-file-ignore-regexp'. The generic way to do this is
with "C-c C-a" (`ivy-toggle-ignore'), but this is faster and more convenient.
Re #408
I want to ignore directories like ".dropbox_" under my home directory while completing with ivy. When I type d (small case, easier to type) with
counsel-find-file
, the completion list lists installation directories like ".dropbox_" before "Dropbox", which is not what I want. Note that I have the following:(setq case-fold-search t ivy-case-fold-search t)
.I get the desired behavior (list Dropbox first) with ido by using
ido-ignore-directories
. Is there an equivalent in ivy? Otherwise, it might be an useful addition.The text was updated successfully, but these errors were encountered: