mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-07 16:00:41 +01:00
last-working-dir: disable chpwd_last_working_dir in subshells (#6817)
This commit is contained in:
@@ -4,8 +4,10 @@ typeset -g ZSH_LAST_WORKING_DIRECTORY
|
|||||||
# Updates the last directory once directory is changed
|
# Updates the last directory once directory is changed
|
||||||
chpwd_functions+=(chpwd_last_working_dir)
|
chpwd_functions+=(chpwd_last_working_dir)
|
||||||
chpwd_last_working_dir() {
|
chpwd_last_working_dir() {
|
||||||
|
if [ "$ZSH_SUBSHELL" = 0 ]; then
|
||||||
local cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
local cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
||||||
pwd >| "$cache_file"
|
pwd >| "$cache_file"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Changes directory to the last working directory
|
# Changes directory to the last working directory
|
||||||
|
|||||||
Reference in New Issue
Block a user