fix hook.zsh
This commit is contained in:
parent
e32d0671ff
commit
849fb714f8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue