You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
599 B

#
# Maintains a frequently used directory list for fast directory changes.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
13 years ago
12 years ago
_z_prefixes=(
''
'/usr/local'
'/opt/local'
"$(brew --prefix 2> /dev/null)"
)
for _z_prefix in "$_z_prefixes[@]"; do
_z_sh="${_z_prefix}/etc/profile.d/z.sh"
if [[ -s "$_z_sh" ]]; then
12 years ago
source "$_z_sh"
break
fi
done
unset _z_prefix{es,} _z_sh
13 years ago
if (( $+functions[_z] )); then
function _z-precmd {
_z --add "${PWD:A}"
13 years ago
}
13 years ago
autoload -Uz add-zsh-hook
add-zsh-hook precmd _z-precmd
alias z='nocorrect _z'
alias j='nocorrect _z'
13 years ago
fi