branch: master commit 3b677d41db0aef26152588ed16a312294fdfef17 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel-file-jump-args): Fix dotfiles not being shown Fixes #1820 --- counsel.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index 78c34cd..ee7fdc4 100644 --- a/counsel.el +++ b/counsel.el @@ -2397,7 +2397,7 @@ FZF-PROMPT, if non-nil, is passed as `ivy-read' prompt argument." (message (cdr x))) :caller 'counsel-rpm))) -(defcustom counsel-file-jump-args "* -type f -not -path '*/.git*'" +(defcustom counsel-file-jump-args "-name '*' -type f -not -path '*/.git/*' -printf '%f\n'" "Arguments for the `find-command' when using `counsel-file-jump'." :type 'string)