a0a8ba66 |
#!/bin/zsh
#
# Make the dirstack more persistant
# |
610f68c8 |
# Add dirpersist to $plugins in ~/.zshrc to load
# |
a0a8ba66 |
|
8f7609b4 |
# $zdirstore is the file used to persist the stack
zdirstore=~/.zdirstore
|
1862b1c0 |
dirpersistinstall () { |
2ff567e1 |
if grep 'dirpersiststore' ~/.zlogout > /dev/null; then |
1862b1c0 |
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
}
|
a0a8ba66 |
dirpersiststore () { |
3add6a2a |
dirs -p | perl -e 'foreach (reverse <STDIN>) {chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"}' > $zdirstore |
a0a8ba66 |
}
dirpersistrestore () { |
8f7609b4 |
if [ -f $zdirstore ]; then
source $zdirstore |
a0a8ba66 |
fi
}
DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups |
1862b1c0 |
dirpersistinstall |
870551e9 |
dirpersistrestore
# Make popd changes permanent without having to wait for logout |
21e2a913 |
alias popd="popd;dirpersiststore" |