1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 11:51:42 +00:00

Move dirpersist to plugin

This commit is contained in:
Matt Cable
2010-09-19 19:39:51 -06:00
parent faca005fe6
commit daf855f2ed

View File

@ -0,0 +1,22 @@
#!/bin/zsh
#
# Make the dirstack more persistant
#
# Run dirpersiststore in ~/.zlogout
dirpersiststore () {
dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > ~/.zdirstore
}
dirpersistrestore () {
if [ -f ~/.zdirstore ]; then
source ~/.zdirstore
fi
}
DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
dirpersistrestore
# Make popd changes permanent without having to wait for logout
alias popd="popd;dirpersiststore"