2016-09-28 16:23:15 +00:00
|
|
|
# Flag indicating if we've previously jumped to last directory
|
2012-10-17 05:36:56 +00:00
|
|
|
typeset -g ZSH_LAST_WORKING_DIRECTORY
|
|
|
|
|
2016-09-28 16:23:15 +00:00
|
|
|
# Updates the last directory once directory is changed
|
2019-11-19 17:47:12 +00:00
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook chpwd chpwd_last_working_dir
|
2016-09-28 16:23:15 +00:00
|
|
|
chpwd_last_working_dir() {
|
2021-01-12 19:40:27 +00:00
|
|
|
# Don't run in subshells
|
|
|
|
[[ "$ZSH_SUBSHELL" -eq 0 ]] || return 0
|
|
|
|
# Add ".$SSH_USER" suffix to cache file if $SSH_USER is set and non-empty
|
|
|
|
local cache_file="$ZSH_CACHE_DIR/last-working-dir${SSH_USER:+.$SSH_USER}"
|
2024-10-27 14:51:38 +00:00
|
|
|
'builtin' 'echo' '-E' "$PWD" >| "$cache_file"
|
2012-10-17 05:36:56 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 16:23:15 +00:00
|
|
|
# Changes directory to the last working directory
|
|
|
|
lwd() {
|
2021-01-12 19:40:27 +00:00
|
|
|
# Add ".$SSH_USER" suffix to cache file if $SSH_USER is set and non-empty
|
|
|
|
local cache_file="$ZSH_CACHE_DIR/last-working-dir${SSH_USER:+.$SSH_USER}"
|
2024-10-27 14:51:38 +00:00
|
|
|
[[ -r "$cache_file" ]] && cd "$(<"$cache_file")"
|
2012-10-17 05:36:56 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 16:30:46 +00:00
|
|
|
# Jump to last directory automatically unless:
|
2024-10-27 14:51:38 +00:00
|
|
|
#
|
|
|
|
# - This isn't the first time the plugin is loaded
|
|
|
|
# - We're not in the $HOME directory (e.g. if terminal opened a different folder)
|
|
|
|
[[ -z "$ZSH_LAST_WORKING_DIRECTORY" ]] || return
|
|
|
|
[[ "$PWD" == "$HOME" ]] || return
|
2016-09-28 16:30:46 +00:00
|
|
|
|
2024-10-27 14:51:38 +00:00
|
|
|
if lwd 2>/dev/null; then
|
|
|
|
ZSH_LAST_WORKING_DIRECTORY=1
|
|
|
|
fi
|