2010-02-27 23:15:47 +00:00
|
|
|
#!/bin/zsh
|
|
|
|
#
|
|
|
|
# Make the dirstack more persistant
|
|
|
|
#
|
|
|
|
# Run dirpersiststore in ~/.zlogout
|
|
|
|
|
2010-09-20 01:43:49 +00:00
|
|
|
dirpersistinstall () {
|
|
|
|
if grep -qL 'dirpersiststore' ~/.zlogout; then
|
|
|
|
else
|
|
|
|
if read -q \?"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "; then
|
|
|
|
echo "# Store dirs stack\n# See ~/.oh-my-zsh/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout
|
|
|
|
else
|
|
|
|
echo "If you don't want this message to appear, remove dirspersist from \$plugins"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-02-27 23:15:47 +00:00
|
|
|
dirpersiststore () {
|
2010-04-22 17:26:08 +00:00
|
|
|
dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > ~/.zdirstore
|
2010-02-27 23:15:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dirpersistrestore () {
|
|
|
|
if [ -f ~/.zdirstore ]; then
|
|
|
|
source ~/.zdirstore
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
DIRSTACKSIZE=10
|
|
|
|
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
|
2010-09-20 01:43:49 +00:00
|
|
|
|
|
|
|
dirpersistinstall
|
2010-03-16 02:34:26 +00:00
|
|
|
dirpersistrestore
|
|
|
|
|
|
|
|
# Make popd changes permanent without having to wait for logout
|
2010-04-02 21:24:41 +00:00
|
|
|
alias popd="popd;dirpersiststore"
|