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

Matt Cable's avatar
Matt Cable committed
7
8
9
10
11
12
13
14
15
16
17
dirpersistinstall () {
    if grep -qL 'dirpersiststore' ~/.zlogout; then
    else
        if read -q \?"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "; then
            echo "# Store dirs stack\n# See ~/.oh-my-zsh/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout
        else
            echo "If you don't want this message to appear, remove dirspersist from \$plugins"
        fi
    fi
}

18
dirpersiststore () {
19
    dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > ~/.zdirstore
20
21
22
23
24
25
26
27
28
29
}

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

DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
Matt Cable's avatar
Matt Cable committed
30
31

dirpersistinstall
32
33
34
dirpersistrestore

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