dirpersist.plugin.zsh 1.09 KB
Newer Older
1
2
3
4
#!/bin/zsh
# 
# Make the dirstack more persistant
# 
Matt Cable's avatar
Matt Cable committed
5
6
# Add dirpersist to $plugins in ~/.zshrc to load
# 
7

Matt Cable's avatar
Matt Cable committed
8
9
10
# $zdirstore is the file used to persist the stack
zdirstore=~/.zdirstore

Matt Cable's avatar
Matt Cable committed
11
dirpersistinstall () {
12
    if grep 'dirpersiststore' ~/.zlogout > /dev/null; then
Matt Cable's avatar
Matt Cable committed
13
14
15
16
17
18
19
20
21
    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
}

22
# FIXME solaris doesn't support tail -r
23
dirpersiststore () {
Matt Cable's avatar
Matt Cable committed
24
    dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > $zdirstore
25
26
27
}

dirpersistrestore () {
Matt Cable's avatar
Matt Cable committed
28
29
    if [ -f $zdirstore ]; then
        source $zdirstore
30
31
32
33
34
    fi
}

DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
Matt Cable's avatar
Matt Cable committed
35
36

dirpersistinstall
37
38
39
dirpersistrestore

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