From 126e825bbab872b3befd9ef88660571391ebfdc3 Mon Sep 17 00:00:00 2001 From: Eric Danan Date: Thu, 30 Apr 2020 22:33:11 +0100 Subject: [PATCH] cp-grep: fix broken ivy-occur Fixes #150 --- counsel-projectile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counsel-projectile.el b/counsel-projectile.el index 428f73d..ee1560a 100644 --- a/counsel-projectile.el +++ b/counsel-projectile.el @@ -637,7 +637,7 @@ of `(ivy-thing-at-point)' by hitting \"M-n\" in the minibuffer." (string :tag " name"))) :group 'counsel-projectile) -(defvar counsel-projectile-grep-base-command "grep -rnEI %s -- %%s" +(defvar counsel-projectile-grep-base-command "grep -rnEI %s %%s" "Format string to use in `cousel-projectile-grep' to construct the command.")