mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
Extract VCS folders to avoid repetition
This commit is contained in:
parent
141c2e5934
commit
5afd2a42fd
1 changed files with 4 additions and 6 deletions
10
lib/grep.zsh
10
lib/grep.zsh
|
|
@ -6,17 +6,15 @@
|
||||||
GREP_OPTIONS="--color=auto"
|
GREP_OPTIONS="--color=auto"
|
||||||
|
|
||||||
# avoid VCS folders (if the necessary grep flags are available)
|
# avoid VCS folders (if the necessary grep flags are available)
|
||||||
|
local VCS_folders="{.cvs,.git,.hg,.svn}"
|
||||||
|
|
||||||
grep-flag-available() {
|
grep-flag-available() {
|
||||||
echo | grep $1 "" >/dev/null 2>&1
|
echo | grep $1 "" >/dev/null 2>&1
|
||||||
}
|
}
|
||||||
if grep-flag-available --exclude-dir=.cvs; then
|
if grep-flag-available --exclude-dir=.cvs; then
|
||||||
for PATTERN in .cvs .git .hg .svn; do
|
GREP_OPTIONS+=" --exclude-dir=$VCS_folders"
|
||||||
GREP_OPTIONS+=" --exclude-dir=$PATTERN"
|
|
||||||
done
|
|
||||||
elif grep-flag-available --exclude=.cvs; then
|
elif grep-flag-available --exclude=.cvs; then
|
||||||
for PATTERN in .cvs .git .hg .svn; do
|
GREP_OPTIONS+=" --exclude=$VCS_folders"
|
||||||
GREP_OPTIONS+=" --exclude=$PATTERN"
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
unfunction grep-flag-available
|
unfunction grep-flag-available
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue