# HG changeset patch # User Augie Fackler # Date 1394561797 14400 # Node ID 629b500e127664091bfb330bd87e872c9f9f5fb7 # Parent c35b58b40fcbeeb9ad4e4df2e90cb797fd2b4d3f textmate.el: disable color on use of egrep diff --git a/.elisp/textmate.el b/.elisp/textmate.el --- a/.elisp/textmate.el +++ b/.elisp/textmate.el @@ -323,14 +323,14 @@ specific type of file." (concat (cond ((string= type "git") "git ls-files") ((string= type "hg") "hg manifest")) (if *textmate-vcs-exclude* - (concat " | egrep -v " + (concat " | egrep --color=never -v " (shell-quote-argument *textmate-vcs-exclude*)) "") - " | xargs egrep -nR " + " | xargs egrep --color=never -nR " (if pattern (concat " --include='" pattern "' ") "") " -- " (shell-quote-argument re))) - (t (concat "egrep -nR --exclude='" + (t (concat "egrep --color=never -nR --exclude='" *textmate-gf-exclude* "' --include='" incpat