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
8f7609b4
Commit
8f7609b4
authored
14 years ago
by
Matt Cable
Browse files
Options
Download
Email Patches
Plain Diff
Change zdirstore to variable
parent
610f68c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugins/dirpersist.plugin.zsh
+6
-3
plugins/dirpersist.plugin.zsh
with
6 additions
and
3 deletions
+6
-3
plugins/dirpersist.plugin.zsh
View file @
8f7609b4
...
...
@@ -5,6 +5,9 @@
# Add dirpersist to $plugins in ~/.zshrc to load
#
# $zdirstore is the file used to persist the stack
zdirstore
=
~/.zdirstore
dirpersistinstall
()
{
if
grep
-qL
'dirpersiststore'
~/.zlogout
;
then
else
...
...
@@ -17,12 +20,12 @@ dirpersistinstall () {
}
dirpersiststore
()
{
dirs
-p
|
tail
-r
| perl
-ne
'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"'
>
~/.
zdirstore
dirs
-p
|
tail
-r
| perl
-ne
'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"'
>
$
zdirstore
}
dirpersistrestore
()
{
if
[
-f
~/.
zdirstore
]
;
then
source
~/.
zdirstore
if
[
-f
$
zdirstore
]
;
then
source
$
zdirstore
fi
}
...
...
This diff is collapsed.
Click to expand it.
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