2012-06-03 18:16:47 +00:00
|
|
|
#
|
|
|
|
# Highlights wdiff output.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-06-03 21:53:02 +00:00
|
|
|
function wdiff {
|
2012-09-03 20:08:39 +00:00
|
|
|
if zstyle -t ':prezto:module:utility:wdiff' color; then
|
2012-06-03 18:16:47 +00:00
|
|
|
if (( $+commands[wdiff] )); then
|
2012-06-03 21:53:02 +00:00
|
|
|
command wdiff \
|
2012-06-03 18:16:47 +00:00
|
|
|
--avoid-wraps \
|
|
|
|
--start-delete="$(print -n $FG[red])" \
|
|
|
|
--end-delete="$(print -n $FG[none])" \
|
|
|
|
--start-insert="$(print -n $FG[green])" \
|
|
|
|
--end-insert="$(print -n $FG[none])" \
|
|
|
|
"$@" \
|
|
|
|
| sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g'
|
|
|
|
elif (( $+commands[git] )); then
|
|
|
|
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
|
2012-06-13 18:08:57 +00:00
|
|
|
else
|
|
|
|
command wdiff "$@"
|
2012-06-03 18:16:47 +00:00
|
|
|
fi
|
2012-06-03 21:53:02 +00:00
|
|
|
else
|
|
|
|
command wdiff "$@"
|
|
|
|
fi
|
|
|
|
}
|
2012-06-03 18:16:47 +00:00
|
|
|
|
2012-06-13 16:34:06 +00:00
|
|
|
wdiff "$@"
|