1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 20:49:44 +00:00
prezto/modules/utility/functions/diff
2012-06-13 14:50:05 -04:00

24 lines
476 B
Plaintext

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