style fixes
This commit is contained in:
parent
aac5523629
commit
cddfc3b038
@ -49,8 +49,7 @@ function push_future() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Called by zsh when directory changes
|
# Called by zsh when directory changes
|
||||||
typeset -ga chpwd_functions
|
chpwd_functions+=(chpwd_dirhistory)
|
||||||
chpwd_functions+='chpwd_dirhistory'
|
|
||||||
function chpwd_dirhistory() {
|
function chpwd_dirhistory() {
|
||||||
push_past $PWD
|
push_past $PWD
|
||||||
# If DIRHISTORY_CD is not set...
|
# If DIRHISTORY_CD is not set...
|
||||||
|
@ -11,8 +11,7 @@ if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then
|
|||||||
[[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD
|
[[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD
|
||||||
fi
|
fi
|
||||||
|
|
||||||
typeset -ga chpwd_functions
|
chpwd_functions+=(chpwd_dirpersist)
|
||||||
chpwd_functions+='chpwd_dirpersist'
|
|
||||||
chpwd_dirpersist() {
|
chpwd_dirpersist() {
|
||||||
if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi
|
if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi
|
||||||
local -ax my_stack
|
local -ax my_stack
|
||||||
|
@ -8,8 +8,7 @@ mkdir -p $ZSH_CACHE_DIR
|
|||||||
cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
cache_file="$ZSH_CACHE_DIR/last-working-dir"
|
||||||
|
|
||||||
# Updates the last directory once directory is changed.
|
# Updates the last directory once directory is changed.
|
||||||
typeset -ga chpwd_functions
|
chpwd_functions+=(chpwd_last_working_dir)
|
||||||
chpwd_functions+='chpwd_last_working_dir'
|
|
||||||
function chpwd_last_working_dir() {
|
function chpwd_last_working_dir() {
|
||||||
# Use >| in case noclobber is set to avoid "file exists" error
|
# Use >| in case noclobber is set to avoid "file exists" error
|
||||||
pwd >| "$cache_file"
|
pwd >| "$cache_file"
|
||||||
|
Loading…
Reference in New Issue
Block a user