From b9a2da61c73b0838f18d0f360e222cb153fbe707 Mon Sep 17 00:00:00 2001 From: nXqd Date: Thu, 14 Jun 2012 08:06:36 +0300 Subject: [PATCH] avoid VCS folders --- lib/grep.zsh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/grep.zsh b/lib/grep.zsh index 977435ee4..25345bd06 100644 --- a/lib/grep.zsh +++ b/lib/grep.zsh @@ -8,6 +8,5 @@ GREP_OPTIONS= for PATTERN in .cvs .git .hg .svn; do GREP_OPTIONS+="--exclude-dir=$PATTERN " done -GREP_OPTIONS+="--color=auto" -export GREP_OPTIONS="$GREP_OPTIONS" -export GREP_COLOR='1;32' +export GREP_OPTIONS+='--color=auto ' +export GREP_COLOR='1;32' \ No newline at end of file