1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

fix(theme-and-appearance): avoid infinite recursion

This commit is contained in:
Carlo Sala 2023-02-22 15:35:12 +01:00
parent a24e91908a
commit aca048814b
No known key found for this signature in database
GPG key ID: DA6FB450C1A4FE9A

View file

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