Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
084792b8
Commit
084792b8
authored
Aug 04, 2015
by
xiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't clobber chpwd
parent
3d5b3430
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
dirhistory.plugin.zsh
plugins/dirhistory/dirhistory.plugin.zsh
+3
-1
last-working-dir.plugin.zsh
plugins/last-working-dir/last-working-dir.plugin.zsh
+3
-1
No files found.
plugins/dirhistory/dirhistory.plugin.zsh
View file @
084792b8
...
@@ -49,7 +49,9 @@ function push_future() {
...
@@ -49,7 +49,9 @@ function push_future() {
}
}
# Called by zsh when directory changes
# Called by zsh when directory changes
function
chpwd
()
{
typeset
-ga
chpwd_functions
chpwd_functions+
=
'chpwd_dirhistory'
function
chpwd_dirhistory
()
{
push_past
$PWD
push_past
$PWD
# If DIRHISTORY_CD is not set...
# If DIRHISTORY_CD is not set...
if
[[
-z
"
${
DIRHISTORY_CD
+x
}
"
]]
;
then
if
[[
-z
"
${
DIRHISTORY_CD
+x
}
"
]]
;
then
...
...
plugins/last-working-dir/last-working-dir.plugin.zsh
View file @
084792b8
...
@@ -8,7 +8,9 @@ mkdir -p $ZSH_CACHE_DIR
...
@@ -8,7 +8,9 @@ mkdir -p $ZSH_CACHE_DIR
cache_file
=
"
$ZSH_CACHE_DIR
/last-working-dir"
cache_file
=
"
$ZSH_CACHE_DIR
/last-working-dir"
# Updates the last directory once directory is changed.
# Updates the last directory once directory is changed.
function
chpwd
()
{
typeset
-ga
chpwd_functions
chpwd_functions+
=
'chpwd_last_working_dir'
function
chpwd_last_working_dir
()
{
# Use >| in case noclobber is set to avoid "file exists" error
# Use >| in case noclobber is set to avoid "file exists" error
pwd
>
|
"
$cache_file
"
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