summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMatt Cable <wozz@wookie.net>2010-09-19 19:43:49 -0600
committerMatt Cable <wozz@wookie.net>2010-09-19 19:43:49 -0600
commit1862b1c0755770cffcbcb936bdecc3bfb050931d (patch)
tree40a2b818eed67d664b147c6e4d3de6c92116dd92 /plugins
parent50fb2d037ee75ac6e558923c7a92c818a96d43c8 (diff)
downloadzsh-1862b1c0755770cffcbcb936bdecc3bfb050931d.tar.gz
zsh-1862b1c0755770cffcbcb936bdecc3bfb050931d.tar.bz2
zsh-1862b1c0755770cffcbcb936bdecc3bfb050931d.zip
Added installation function
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dirpersist.plugin.zsh13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/dirpersist.plugin.zsh b/plugins/dirpersist.plugin.zsh
index d694c55e2..48ca94d7c 100644
--- a/plugins/dirpersist.plugin.zsh
+++ b/plugins/dirpersist.plugin.zsh
@@ -4,6 +4,17 @@
#
# Run dirpersiststore in ~/.zlogout
+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
+}
+
dirpersiststore () {
dirs -p | tail -r | perl -ne 'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"' > ~/.zdirstore
}
@@ -16,6 +27,8 @@ dirpersistrestore () {
DIRSTACKSIZE=10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
+
+dirpersistinstall
dirpersistrestore
# Make popd changes permanent without having to wait for logout