comparison .elisp/textmate.el @ 30:43e751bdedeb

Latest textmate.el - fixed a bug in find in type.
author Augie Fackler <durin42@gmail.com>
date Fri, 02 Jan 2009 14:41:02 -0600
parents e5f414619ea7
children 60dbe5b005cc
comparison
equal deleted inserted replaced
29:e5f414619ea7 30:43e751bdedeb
217 (concat "cd " 217 (concat "cd "
218 root 218 root
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 '" re "'")) 222 " | xargs grep -nR "
223 (if pattern (concat " --include='" pattern "' ") "")
224 "'" re "'"))
223 (t (concat "cd " root "; egrep -nR --exclude='" 225 (t (concat "cd " root "; egrep -nR --exclude='"
224 *textmate-gf-exclude* 226 *textmate-gf-exclude*
225 "' --include='" 227 "' --include='"
226 incpat 228 incpat
227 "' '" 229 "' '"