# # Highlights diff output. # # Authors: # Sorin Ionescu # function diff { if zstyle -t ':prezto:module:utility:diff' color; then if (( $+commands[colordiff] )); then command colordiff "$@" else command diff "$@" fi else command diff "$@" fi } diff "$@"