Commit a0a8ba66 authored by Matt Cable's avatar Matt Cable
Browse files

Initial pass at pesistant directory stack

parent 99f159e0
#!/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
\ No newline at end of file
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