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

We don't use `function` clause in Prezto by convention.
This commit is contained in:
Indrajit Raychaudhuri 2021-05-10 16:31:56 -05:00 committed by Indrajit Raychaudhuri
parent d51e5ce40f
commit 6eb4021556
1 changed files with 9 additions and 9 deletions

View File

@ -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
# }