From: Frank Terbeck Date: Tue, 11 Aug 2015 10:07:22 +0000 (+0200) Subject: zshrc, dirstack: Avoid chpwd() upon the very first cd calls X-Git-Tag: v0.12.3~2 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=cdc48e89c5ae0fe84ae458a20ebdd36282a2e81c zshrc, dirstack: Avoid chpwd() upon the very first cd calls --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index b6c8375..72fde6e 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1622,7 +1622,7 @@ if [[ -f ${DIRSTACKFILE} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then # directories from the saved dir-stack file. dirstack=( ${(f)"$(< $DIRSTACKFILE)"}(N) ) # "cd -" won't work after login by just setting $OLDPWD, so - [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD + [[ -d $dirstack[1] ]] && cd -q $dirstack[1] && cd -q $OLDPWD fi if zstyle -T ':grml:chpwd:dirstack' filter-on-load; then