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
cddfc3b0
Commit
cddfc3b0
authored
Aug 04, 2015
by
xiao.fan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style fixes
parent
aac55236
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
dirhistory.plugin.zsh
plugins/dirhistory/dirhistory.plugin.zsh
+1
-2
dirpersist.plugin.zsh
plugins/dirpersist/dirpersist.plugin.zsh
+1
-2
last-working-dir.plugin.zsh
plugins/last-working-dir/last-working-dir.plugin.zsh
+1
-2
No files found.
plugins/dirhistory/dirhistory.plugin.zsh
View file @
cddfc3b0
...
...
@@ -49,8 +49,7 @@ function push_future() {
}
# Called by zsh when directory changes
typeset
-ga
chpwd_functions
chpwd_functions+
=
'chpwd_dirhistory'
chpwd_functions+
=(
chpwd_dirhistory
)
function
chpwd_dirhistory
()
{
push_past
$PWD
# If DIRHISTORY_CD is not set...
...
...
plugins/dirpersist/dirpersist.plugin.zsh
View file @
cddfc3b0
...
...
@@ -11,8 +11,7 @@ if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then
[[
-d
$dirstack
[
1]
]]
&&
cd
$dirstack
[
1]
&&
cd
$OLDPWD
fi
typeset
-ga
chpwd_functions
chpwd_functions+
=
'chpwd_dirpersist'
chpwd_functions+
=(
chpwd_dirpersist
)
chpwd_dirpersist
()
{
if
((
$DIRSTACKSIZE
<
=
0
))
||
[[
-z
$dirstack_file
]]
;
then return
;
fi
local
-ax
my_stack
...
...
plugins/last-working-dir/last-working-dir.plugin.zsh
View file @
cddfc3b0
...
...
@@ -8,8 +8,7 @@ mkdir -p $ZSH_CACHE_DIR
cache_file
=
"
$ZSH_CACHE_DIR
/last-working-dir"
# Updates the last directory once directory is changed.
typeset
-ga
chpwd_functions
chpwd_functions+
=
'chpwd_last_working_dir'
chpwd_functions+
=(
chpwd_last_working_dir
)
function
chpwd_last_working_dir
()
{
# Use >| in case noclobber is set to avoid "file exists" error
pwd
>
|
"
$cache_file
"
...
...
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