소스 검색

emacs.el: use ag and ack over global and gitgrep by my-rgrep

pull/1/head
10sr 10 년 전
부모
커밋
e1d3be700f
1개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제
  1. +10
    -10
      emacs.el

+ 10
- 10
emacs.el 파일 보기

@@ -2235,6 +2235,16 @@ ARG is ignored."

(defvar my-rgrep-alist
`(
;; the silver searcher
("ag"
(executable-find "ag")
"ag --nocolor --nogroup --nopager ")

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

;; gnu global
("global"
(and (require 'gtags nil t)
@@ -2248,16 +2258,6 @@ ARG is ignored."
(shell-command "git rev-parse --git-dir"))
"git --no-pager -c color.grep=false grep -nH -e ")

;; the silver searcher
("ag"
(executable-find "ag")
"ag --nocolor --nogroup --nopager ")

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

;; grep
("grep"
t


불러오는 중...
취소
저장