prezto/modules/utility/functions/diff
Timo Derstappen 3f5cfd88e8 replaced git with 'command git'
to prevent the loss of performance if git is eg aliased to hub or other
wrappers.
2014-07-13 12:36:15 +02:00

23 lines
487 B
Text

#
# Highlights diff output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function diff {
if zstyle -t ':prezto:module:utility:diff' color; then
if (( $+commands[colordiff] )); then
command diff --unified "$@" | colordiff --difftype diffu
elif (( $+commands[git] )); then
command git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
else
command diff --unified "$@"
fi
else
command diff --unified "$@"
fi
}
diff "$@"