Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
1862b1c0
Commit
1862b1c0
authored
Sep 20, 2010
by
Matt Cable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added installation function
parent
50fb2d03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
dirpersist.plugin.zsh
plugins/dirpersist.plugin.zsh
+13
-0
No files found.
plugins/dirpersist.plugin.zsh
View file @
1862b1c0
...
@@ -4,6 +4,17 @@
...
@@ -4,6 +4,17 @@
#
#
# Run dirpersiststore in ~/.zlogout
# 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
()
{
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
}
}
...
@@ -16,6 +27,8 @@ dirpersistrestore () {
...
@@ -16,6 +27,8 @@ dirpersistrestore () {
DIRSTACKSIZE
=
10
DIRSTACKSIZE
=
10
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
dirpersistinstall
dirpersistrestore
dirpersistrestore
# Make popd changes permanent without having to wait for logout
# 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