branch: master commit 22fca55f61fa96824c7c39dc34442273ce85474b Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel-file-jump-args): Remove extra backslash Thanks, @basil-conto --- counsel.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counsel.el b/counsel.el index ecf75ae..d6030b0 100644 --- a/counsel.el +++ b/counsel.el @@ -2458,7 +2458,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 "* -type f -not -path '*/.git*'" "Arguments for the `find-command' when using `counsel-file-jump'." :type 'string) @@ -2491,7 +2491,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 "* -type f -not -path '*\/.git*'" +(defcustom counsel-dired-jump-args "* -type f -not -path '*/.git*'" "Arguments for the `find-command' when using `counsel-dired-jump'." :type 'string)