Don't clobber chpwd

This commit is contained in:
xiao
2015-08-03 22:10:24 -07:00
parent 3d5b3430fd
commit 084792b829
2 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,9 @@ mkdir -p $ZSH_CACHE_DIR
cache_file="$ZSH_CACHE_DIR/last-working-dir"
# Updates the last directory once directory is changed.
function chpwd() {
typeset -ga chpwd_functions
chpwd_functions+='chpwd_last_working_dir'
function chpwd_last_working_dir() {
# Use >| in case noclobber is set to avoid "file exists" error
pwd >| "$cache_file"
}