You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
380 B
19 lines
380 B
#!/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 |