From 28705b04845ce9af3d83b0d6d9709d1449d271fc Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Sat, 11 Apr 2015 23:51:27 -0400 Subject: [PATCH] Add `-e` option for search with `pt` In order to be consistent with `ag` --- spacemacs/packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacemacs/packages.el b/spacemacs/packages.el index aebf96a9e..395cb16c4 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1562,7 +1562,7 @@ ARG non nil means that the editing style is `vim'." "Perform a search with the platinum searcher using `helm-projectile.'" (interactive) (if (configuration-layer/package-usedp 'helm-ag) - (let ((helm-ag-base-command "pt --nocolor --nogroup")) + (let ((helm-ag-base-command "pt -e --nocolor --nogroup")) (call-interactively 'helm-projectile-ag)) (message "error: helm-ag not found.")))