mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
Initial pass at pesistant directory stack
This commit is contained in:
parent
99f159e0a7
commit
a0a8ba666b
1 changed files with 19 additions and 0 deletions
19
lib/dirspersist.zsh
Normal file
19
lib/dirspersist.zsh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
#!/bin/zsh
|
||||||
|
#
|
||||||
|
# Make the dirstack more persistant
|
||||||
|
#
|
||||||
|
# Run dirpersiststore in ~/.zlogout
|
||||||
|
|
||||||
|
dirpersiststore () {
|
||||||
|
dirs -p | sed 's/ /\\ /g;s/^/pushd -q /;1!G;h;$!d;' > ~/.zdirstore
|
||||||
|
}
|
||||||
|
|
||||||
|
dirpersistrestore () {
|
||||||
|
if [ -f ~/.zdirstore ]; then
|
||||||
|
source ~/.zdirstore
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
DIRSTACKSIZE=10
|
||||||
|
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
|
||||||
|
dirpersistrestore
|
Loading…
Reference in a new issue