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