cp-grep: Update following upstream change in counsel-more-chars

This commit is contained in:
Eric Danan 2018-07-17 15:26:59 +02:00
parent 9c350a9c0f
commit 7751773cb2

View file

@ -579,15 +579,14 @@ construct the command.")
(defun counsel-projectile-grep-function (string) (defun counsel-projectile-grep-function (string)
"Grep for STRING in the current project." "Grep for STRING in the current project."
(if (< (length string) 3) (or (counsel-more-chars)
(counsel-more-chars 3) (let ((default-directory (ivy-state-directory ivy-last))
(let ((default-directory (ivy-state-directory ivy-last)) (regex (counsel-unquote-regex-parens
(regex (counsel-unquote-regex-parens (setq ivy--old-re
(setq ivy--old-re (ivy--regex string)))))
(ivy--regex string))))) (counsel--async-command (format counsel-projectile-grep-command
(counsel--async-command (format counsel-projectile-grep-command (shell-quote-argument regex)))
(shell-quote-argument regex))) nil)))
nil)))
(defun counsel-projectile-grep-transformer (str) (defun counsel-projectile-grep-transformer (str)
"Higlight file and line number in STR, first removing the "Higlight file and line number in STR, first removing the