prezto_config/modules/z/init.zsh

38 lines
599 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Maintains a frequently used directory list for fast directory changes.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-31 06:02:50 +02:00
2012-04-12 02:51:10 +02:00
_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
2012-04-12 02:51:10 +02:00
source "$_z_sh"
break
fi
done
unset _z_prefix{es,} _z_sh
2011-08-31 06:02:50 +02:00
if (( $+functions[_z] )); then
2012-04-12 03:00:40 +02:00
function _z-precmd {
_z --add "${PWD:A}"
2011-08-31 06:02:50 +02:00
}
2012-04-12 03:00:40 +02:00
2011-08-31 06:02:50 +02:00
autoload -Uz add-zsh-hook
2012-04-12 03:00:40 +02:00
add-zsh-hook precmd _z-precmd
alias z='nocorrect _z'
alias j='nocorrect _z'
2011-08-31 06:02:50 +02:00
fi