prezto_config/modules/utility/functions/diff

24 lines
479 B
Plaintext
Raw Normal View History

#
# Highlights diff output.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-06-03 23:53:02 +02:00
function diff {
if zstyle -t ':prezto:module:utility:diff' color; then
if (( $+commands[colordiff] )); then
2012-06-03 23:53:02 +02:00
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
2012-06-03 23:53:02 +02:00
else
command diff --unified "$@"
fi
}
diff "$@"