summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/theme-and-appearance.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/theme-and-appearance.zsh b/lib/theme-and-appearance.zsh
index c83f58c7b..1b64b51d4 100644
--- a/lib/theme-and-appearance.zsh
+++ b/lib/theme-and-appearance.zsh
@@ -47,7 +47,7 @@ fi
# enable diff color if possible.
if command diff --color /dev/null /dev/null &>/dev/null; then
function color-diff {
- diff --color $@
+ command diff --color $@
}
alias diff="color-diff"
compdef _diff color-diff # compdef is already loaded by this point