From eb74a94d5c64a0152c7ebcdddcf876354375a1d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Sch=C3=A4ferdiek?= Date: Tue, 10 Sep 2019 08:12:18 +0200 Subject: [PATCH] Remove zdirs again --- etc/skel/.zshrc | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index cb17a69..0cb0415 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -108,24 +108,6 @@ if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then zle -N zle-line-finish fi -# DIRSTACK -DIRSTACKSIZE=${DIRSTACKSIZE:-20} -dirstack_file=${dirstack_file:-${HOME}/.zdirs} - -if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then - dirstack=( ${(f)"$(< $dirstack_file)"} ) - # "cd -" won't work after login by just setting $OLDPWD, so - [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD -fi - -chpwd_functions+=(chpwd_dirpersist) -chpwd_dirpersist() { - if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi - local -ax my_stack - my_stack=( ${PWD} ${dirstack} ) - builtin print -l ${(u)my_stack} >! ${dirstack_file} -} - # HIGHLIGHTING ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern) source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh