diff --git a/config/hook.zsh b/config/hook.zsh index e89a5fb..3c24d64 100644 --- a/config/hook.zsh +++ b/config/hook.zsh @@ -3,7 +3,7 @@ preexec_hook() { _cmd=($(echo $2)); print -n "\e]2;${(q)_cmd[1]}\a"; } add-zsh-hook -Uz preexec preexec_hook # auto to last pwd -chpwd_hook() { echo $PWD > $ZSH/cache/currentdir } +chpwd_hook() { echo $PWD > $OMZ/cache/currentdir } add-zsh-hook -Uz chpwd chpwd_hook -currentdir=$(cat $ZSH/cache/currentdir 2>/dev/null) +currentdir=$(cat $OMZ/cache/currentdir 2>/dev/null) [ -d "$currentdir" ] && cd $currentdir