Commit 8f7609b4 authored by Matt Cable's avatar Matt Cable
Browse files

Change zdirstore to variable

parent 610f68c8
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
# Add dirpersist to $plugins in ~/.zshrc to load # Add dirpersist to $plugins in ~/.zshrc to load
# #
# $zdirstore is the file used to persist the stack
zdirstore=~/.zdirstore
dirpersistinstall () { dirpersistinstall () {
if grep -qL 'dirpersiststore' ~/.zlogout; then if grep -qL 'dirpersiststore' ~/.zlogout; then
else else
...@@ -17,12 +20,12 @@ dirpersistinstall () { ...@@ -17,12 +20,12 @@ dirpersistinstall () {
} }
dirpersiststore () { dirpersiststore () {
dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > ~/.zdirstore dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > $zdirstore
} }
dirpersistrestore () { dirpersistrestore () {
if [ -f ~/.zdirstore ]; then if [ -f $zdirstore ]; then
source ~/.zdirstore source $zdirstore
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment