comparison .elisp/textmate.el @ 99:26450200777a

Latest textmate.el
author Augie Fackler <durin42@gmail.com>
date Sun, 03 May 2009 22:46:07 -0500
parents 60dbe5b005cc
children fe9d358b9fe8
comparison
equal deleted inserted replaced
98:8aa70b521063 99:26450200777a
219 " ; " 219 " ; "
220 (cond ((string= type "git") "git ls-files") 220 (cond ((string= type "git") "git ls-files")
221 ((string= type "hg") "hg manifest")) 221 ((string= type "hg") "hg manifest"))
222 " | xargs grep -nR " 222 " | xargs grep -nR "
223 (if pattern (concat " --include='" pattern "' ") "") 223 (if pattern (concat " --include='" pattern "' ") "")
224 " -- "
224 (shell-quote-argument re))) 225 (shell-quote-argument re)))
225 (t (concat "cd " root "; egrep -nR --exclude='" 226 (t (concat "cd " root "; egrep -nR --exclude='"
226 *textmate-gf-exclude* 227 *textmate-gf-exclude*
227 "' --include='" 228 "' --include='"
228 incpat 229 incpat
229 "' " 230 "' -- "
230 (shell-quote-argument re) 231 (shell-quote-argument re)
231 " . | grep -vE '" 232 " . | grep -vE '"
232 *textmate-gf-exclude* 233 *textmate-gf-exclude*
233 "' | sed s:./::" 234 "' | sed s:./::"
234 ))))) 235 )))))