2016-09-28 18:23:15 +02:00
|
|
|
# Flag indicating if we've previously jumped to last directory
|
2012-10-17 07:36:56 +02:00
|
|
|
typeset -g ZSH_LAST_WORKING_DIRECTORY
|
|
|
|
|
2016-09-28 18:23:15 +02:00
|
|
|
# Updates the last directory once directory is changed
|
2019-11-19 18:47:12 +01:00
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook chpwd chpwd_last_working_dir
|
2016-09-28 18:23:15 +02:00
|
|
|
chpwd_last_working_dir() {
|
2021-01-12 20:40:27 +01: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}"
|
2022-11-21 11:24:10 +01:00
|
|
|
builtin pwd >| "$cache_file"
|
2012-10-17 07:36:56 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 18:23:15 +02:00
|
|
|
# Changes directory to the last working directory
|
|
|
|
lwd() {
|
2021-01-12 20:40:27 +01: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}"
|
|
|
|
[[ -r "$cache_file" ]] && cd "$(cat "$cache_file")"
|
2012-10-17 07:36:56 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 18:30:46 +02:00
|
|
|
# Jump to last directory automatically unless:
|
|
|
|
# - this isn't the first time the plugin is loaded
|
|
|
|
# - it's not in $HOME directory
|
|
|
|
[[ -n "$ZSH_LAST_WORKING_DIRECTORY" ]] && return
|
|
|
|
[[ "$PWD" != "$HOME" ]] && return
|
|
|
|
|
|
|
|
lwd 2>/dev/null && ZSH_LAST_WORKING_DIRECTORY=1 || true
|