Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
1862b1c0
Commit
1862b1c0
authored
Sep 19, 2010
by
Matt Cable
Browse files
Added installation function
parent
50fb2d03
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/dirpersist.plugin.zsh
View file @
1862b1c0
...
...
@@ -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
\n
dirpersiststore"
>>
~/.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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment