dirspersist.zsh 556 Bytes
Newer Older
1
2
3
4
5
6
7
#!/bin/zsh
# 
# Make the dirstack more persistant
# 
# Run dirpersiststore in ~/.zlogout

dirpersiststore () {
8
9
# FIXME: need to escape all shell metacharacters, not just spaces!
    dirs -p | sed 's/ /\\ /g;s/&/\\&/;s/^/pushd -q /;1!G;h;$!d;' > ~/.zdirstore
10
11
12
13
14
15
16
17
18
19
}

dirpersistrestore () {
    if [ -f ~/.zdirstore ]; then
        source ~/.zdirstore
    fi
}

DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
20
21
22
dirpersistrestore

# Make popd changes permanent without having to wait for logout
23
alias popd="popd;dirpersiststore"