You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
478 B
22 lines
478 B
# |
|
# 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 |
|
git --no-pager diff --color=auto --no-ext-diff --no-index "$@" |
|
else |
|
command diff --unified "$@" |
|
fi |
|
else |
|
command diff --unified "$@" |
|
fi |
|
} |
|
|
|
diff "$@"
|
|
|