1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-12-19 02:41:57 +00:00

Ignore .tox folder in grep

This commit is contained in:
Shi Yan 2018-11-30 15:44:41 +11:00 committed by Marc Cornellà
parent b4b50f20ac
commit a8ed1c4e7a

View file

@ -11,7 +11,7 @@ if grep-flag-available --color=auto; then
fi fi
# ignore these folders (if the necessary grep flags are available) # ignore these folders (if the necessary grep flags are available)
EXC_FOLDERS="{.bzr,CVS,.git,.hg,.svn,.idea}" EXC_FOLDERS="{.bzr,CVS,.git,.hg,.svn,.idea,.tox}"
if grep-flag-available --exclude-dir=.cvs; then if grep-flag-available --exclude-dir=.cvs; then
GREP_OPTIONS+=" --exclude-dir=$EXC_FOLDERS" GREP_OPTIONS+=" --exclude-dir=$EXC_FOLDERS"
@ -25,6 +25,5 @@ alias egrep="egrep $GREP_OPTIONS"
alias fgrep="fgrep $GREP_OPTIONS" alias fgrep="fgrep $GREP_OPTIONS"
# clean up # clean up
unset GREP_OPTIONS unset GREP_OPTIONS EXC_FOLDERS
unset EXC_FOLDERS
unfunction grep-flag-available unfunction grep-flag-available