From d97095ceeee06960b9bb099673981f1101a115d1 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Wed, 29 Aug 2018 14:42:10 +0900 Subject: [PATCH] Remove nocolor args --- emacs.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/emacs.el b/emacs.el index 089b7b2..df41c23 100644 --- a/emacs.el +++ b/emacs.el @@ -1396,27 +1396,27 @@ condition to choose COMMAND when evaluated.") ("gitgrep" (eq 0 (shell-command "git rev-parse --git-dir")) - "git --no-pager -c color.grep=false grep -nH -e ") + "git --no-pager -c color.grep=always grep -nH -e ") ;; ripgrep ("rg" (executable-find "rg") - "rg --no-heading --color=never --smart-case ") + "rg --no-heading --smart-case ") ;; sift ("sift" (executable-find "sift") - ("sift --no-color --binary-skip --filename --line-number --git --smart-case ")) + ("sift --binary-skip --filename --line-number --git --smart-case ")) ;; the silver searcher ("ag" (executable-find "ag") - "ag --nocolor --nogroup --nopager --filename ") + "ag --nogroup --nopager --filename ") ;; ack ("ack" (executable-find "ack") - "ack --nocolor --nogroup --nopager --with-filename ") + "ack --nogroup --nopager --with-filename ") ;; gnu global ("global"