lib: prefix diff call with command to bypass diff aliases

See https://github.com/ohmyzsh/ohmyzsh/pull/8807#issuecomment-652697704
master
Marc Cornellà 6 years ago
parent fd9781b4c7
commit d0d01c0bbf
  1. 2
      lib/theme-and-appearance.zsh

@ -40,7 +40,7 @@ if [[ "$DISABLE_LS_COLORS" != "true" ]]; then
fi
# enable diff color if possible.
if diff --color . . &>/dev/null; then
if command diff --color . . &>/dev/null; then
alias diff='diff --color'
fi

Loading…
Cancel
Save