浏览代码

lib: prefix diff call with command to bypass diff aliases

See https://github.com/ohmyzsh/ohmyzsh/pull/8807#issuecomment-652697704
Marc Cornellà 4 年之前
父节点
当前提交
d0d01c0bbf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/theme-and-appearance.zsh

+ 1 - 1
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