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
18c837b1
Unverified
Commit
18c837b1
authored
Apr 20, 2023
by
Erin Schlarb
Committed by
GitHub
Apr 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(dirhistory): run properly if `ksh_arrays` is set (#11630)
parent
9139d30c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
dirhistory.plugin.zsh
plugins/dirhistory/dirhistory.plugin.zsh
+6
-2
No files found.
plugins/dirhistory/dirhistory.plugin.zsh
View file @
18c837b1
...
...
@@ -19,15 +19,17 @@ export DIRHISTORY_SIZE=30
# Returns the element if the array was not empty,
# otherwise returns empty string.
function
pop_past
()
{
typeset
-g
$1
=
"
${
dirhistory_past
[
$#dirhistory_past
]
}
"
setopt localoptions no_ksh_arrays
if
[[
$#dirhistory_past
-gt
0
]]
;
then
typeset
-g
$1
=
"
${
dirhistory_past
[
$#dirhistory_past
]
}
"
dirhistory_past[
$#dirhistory_past
]=()
fi
}
function
pop_future
()
{
typeset
-g
$1
=
"
${
dirhistory_future
[
$#dirhistory_future
]
}
"
setopt localoptions no_ksh_arrays
if
[[
$#dirhistory_future
-gt
0
]]
;
then
typeset
-g
$1
=
"
${
dirhistory_future
[
$#dirhistory_future
]
}
"
dirhistory_future[
$#dirhistory_future
]=()
fi
}
...
...
@@ -35,6 +37,7 @@ function pop_future() {
# Push a new element onto the end of dirhistory_past. If the size of the array
# is >= DIRHISTORY_SIZE, the array is shifted
function
push_past
()
{
setopt localoptions no_ksh_arrays
if
[[
$#dirhistory_past
-ge
$DIRHISTORY_SIZE
]]
;
then
shift
dirhistory_past
fi
...
...
@@ -44,6 +47,7 @@ function push_past() {
}
function
push_future
()
{
setopt localoptions no_ksh_arrays
if
[[
$#dirhistory_future
-ge
$DIRHISTORY_SIZE
]]
;
then
shift
dirhistory_future
fi
...
...
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