Browse Source

Remove nocolor args

master
10sr 6 years ago
parent
commit
d97095ceee
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      emacs.el

+ 5
- 5
emacs.el View File

@@ -1396,27 +1396,27 @@ condition to choose COMMAND when evaluated.")
("gitgrep" ("gitgrep"
(eq 0 (eq 0
(shell-command "git rev-parse --git-dir")) (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 ;; ripgrep
("rg" ("rg"
(executable-find "rg") (executable-find "rg")
"rg --no-heading --color=never --smart-case ")
"rg --no-heading --smart-case ")


;; sift ;; sift
("sift" ("sift"
(executable-find "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 ;; the silver searcher
("ag" ("ag"
(executable-find "ag") (executable-find "ag")
"ag --nocolor --nogroup --nopager --filename ")
"ag --nogroup --nopager --filename ")


;; ack ;; ack
("ack" ("ack"
(executable-find "ack") (executable-find "ack")
"ack --nocolor --nogroup --nopager --with-filename ")
"ack --nogroup --nopager --with-filename ")


;; gnu global ;; gnu global
("global" ("global"


Loading…
Cancel
Save