mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
Use $commands[]
to check for command existence
This commit is contained in:
parent
efa7c7b7ff
commit
6c08286c8e
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@ then
|
||||||
colorls -G -d . &>/dev/null 2>&1 && alias ls='colorls -G'
|
colorls -G -d . &>/dev/null 2>&1 && alias ls='colorls -G'
|
||||||
else
|
else
|
||||||
# For GNU ls, we use the default ls color theme. They can later be overwritten by themes.
|
# For GNU ls, we use the default ls color theme. They can later be overwritten by themes.
|
||||||
type dircolors >/dev/null 2>&1 && eval "$(dircolors)"
|
(( $+commands[dircolors] )) && eval "$(dircolors)"
|
||||||
|
|
||||||
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
|
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue