utility: Pipe diff output through colordiff Instead of aliasing

`colordiff` behaves better as `stdin` filter. This is useful in
retaining color escape sequences when used with `less`.
main
Indrajit Raychaudhuri 3 years ago committed by Indrajit Raychaudhuri
parent 866d5dfccd
commit f3c92ffeb3

@ -9,7 +9,7 @@
if zstyle -t ':prezto:module:utility:diff' color \ if zstyle -t ':prezto:module:utility:diff' color \
&& (( $+commands[colordiff] )); then && (( $+commands[colordiff] )); then
command colordiff "$@" command diff "$@" | colordiff
else else
command diff "$@" command diff "$@"
fi fi

Loading…
Cancel
Save