1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-09 16:53:53 +00:00
prezto/modules/utility/functions/diff

21 lines
318 B
Plaintext
Raw Normal View History

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