This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/lib/dirspersist.zsh

19 lines
380 B
Bash
Raw Normal View History

#!/bin/zsh
#
# Make the dirstack more persistant
#
# Run dirpersiststore in ~/.zlogout
dirpersiststore () {
dirs -p | sed 's/ /\\ /g;s/^/pushd -q /;1!G;h;$!d;' > ~/.zdirstore
}
dirpersistrestore () {
if [ -f ~/.zdirstore ]; then
source ~/.zdirstore
fi
}
DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
dirpersistrestore