1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 12:50:27 +00:00

Filter brackets in wdiff highlights.

This commit is contained in:
Sorin Ionescu 2011-12-28 10:34:26 -05:00
parent fb26ff880c
commit 2c68dfe11a

View File

@ -91,12 +91,17 @@ if zstyle -t ':omz:alias:diff' color; then
}
function wdiff() {
if (( $+commands[wdiff] )) && (( $+commands[colordiff] )); then
"$commands[diff]" --unified "$@" | "$commands[wdiff]" --diff-input --avoid-wraps | colordiff --difftype 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 --word-diff "$@"
elif (( $+commands[wdiff] )); then
"$commands[diff]" --unified "$@" | "$commands[wdiff]" --diff-input --avoid-wraps
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
else
print "zsh: command not found: $0" >&2
fi