Browse Source

Ignore .bzr folders in grep too

Marc Cornellà 9 years ago
parent
commit
cf586b54b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/grep.zsh

+ 1 - 1
lib/grep.zsh

@@ -6,7 +6,7 @@
 GREP_OPTIONS="--color=auto"
 
 # avoid VCS folders (if the necessary grep flags are available)
-VCS_FOLDERS="{.cvs,.git,.hg,.svn}"
+VCS_FOLDERS="{.bzr,.cvs,.git,.hg,.svn}"
 
 grep-flag-available() {
     echo | grep $1 "" >/dev/null 2>&1