utility: Remove redundant `function` clause in 'diff'

We don't use `function` clause in Prezto by convention.
main
Indrajit Raychaudhuri 3 years ago committed by Indrajit Raychaudhuri
parent d51e5ce40f
commit 6eb4021556

@ -5,13 +5,13 @@
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function diff {
if zstyle -t ':prezto:module:utility:diff' color \
&& (( $+commands[colordiff] )); then
command colordiff "$@"
else
command diff "$@"
fi
}
# function diff {
diff "$@"
if zstyle -t ':prezto:module:utility:diff' color \
&& (( $+commands[colordiff] )); then
command colordiff "$@"
else
command diff "$@"
fi
# }

Loading…
Cancel
Save