branch: master
commit 3c20b2c340cf425df6b563d5ec61607d171317e7
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-git-grep): Fix prompt
---
 counsel.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/counsel.el b/counsel.el
index b42550e..e65fd91 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1020,9 +1020,9 @@ INITIAL-INPUT can be given as the initial minibuffer 
input."
         (error "Not in a git repository")
       (unless proj
         (setq counsel--git-grep-count (counsel--gg-count "" t)))
-      (ivy-read "git grep: " (if proj
-                                 'counsel-git-grep-proj-function
-                               'counsel-git-grep-function)
+      (ivy-read "git grep" (if proj
+                               'counsel-git-grep-proj-function
+                             'counsel-git-grep-function)
                 :initial-input initial-input
                 :matcher #'counsel-git-grep-matcher
                 :dynamic-collection (or proj (> counsel--git-grep-count 20000))

Reply via email to