branch: master
commit 4c81973d2bbacfaec95b5555cc8d1fe5ccbae55b
Author: justbur <jus...@burkett.cc>
Commit: justbur <jus...@burkett.cc>

    counsel.el (counsel-locate-cmd-es): Fix regex
    
    es doesn't support lazy search
---
 counsel.el |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index 64baa76..128763d 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1238,7 +1238,7 @@ string - the full shell command to run."
   "Return a shell command based on INPUT."
   (format "es.exe -i -r %s"
           (counsel-unquote-regex-parens
-           (ivy--regex input))))
+           (ivy--regex input t))))
 
 (defun counsel-locate-function (input)
   (if (< (length input) 3)

Reply via email to