mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 09:20:09 +00:00
Change zdirstore to variable
This commit is contained in:
parent
610f68c8e0
commit
8f7609b4fa
1 changed files with 6 additions and 3 deletions
|
@ -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 () {
|
||||||
}
|
}
|
||||||
|
|
||||||
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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue