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`.
This commit is contained in:
parent
866d5dfccd
commit
f3c92ffeb3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue