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.
31 lines
760 B
31 lines
760 B
13 years ago
|
#
|
||
|
# Highlights wdiff output.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
|
if zstyle -t ':omz:module:utility:wdiff' color; then
|
||
|
function wdiff {
|
||
|
if (( $+commands[wdiff] )); then
|
||
|
"$commands[wdiff]" \
|
||
|
--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 "$@"
|
||
|
else
|
||
|
print "zsh: command not found: $0" >&2
|
||
|
fi
|
||
|
}
|
||
|
else
|
||
|
unfunction wdiff
|
||
|
fi
|
||
|
|
||
|
wdiff "$@"
|
||
|
|