branch: master commit eaba38a66da884f1b91c76f984918fe96d3ba15a Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel-dired-jump-args): Fix for OSX Fixes #1990 --- counsel.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counsel.el b/counsel.el index d9299b6..9b592a0 100644 --- a/counsel.el +++ b/counsel.el @@ -2419,7 +2419,7 @@ FZF-PROMPT, if non-nil, is passed as `ivy-read' prompt argument." (message (cdr x))) :caller 'counsel-rpm))) -(defcustom counsel-file-jump-args "-name '.git' -prune -o -type f -print | cut -c 3-" +(defcustom counsel-file-jump-args ". -name '.git' -prune -o -type f -print | cut -c 3-" "Arguments for the `find-command' when using `counsel-file-jump'." :type 'string) @@ -2450,7 +2450,7 @@ INITIAL-DIRECTORY, if non-nil, is used as the root directory for search." :keymap counsel-find-file-map :caller 'counsel-file-jump))) -(defcustom counsel-dired-jump-args "-name '.git' -prune -o -type d -print | cut -c 3-" +(defcustom counsel-dired-jump-args ". -name '.git' -prune -o -type d -print | cut -c 3-" "Arguments for the `find-command' when using `counsel-dired-jump'." :type 'string)