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
2c068525
Unverified
Commit
2c068525
authored
Nov 16, 2021
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style(dirhistory): remove use of `eval` completely
parent
b3ba9978
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dirhistory.plugin.zsh
plugins/dirhistory/dirhistory.plugin.zsh
+2
-2
No files found.
plugins/dirhistory/dirhistory.plugin.zsh
View file @
2c068525
...
...
@@ -19,14 +19,14 @@ export DIRHISTORY_SIZE=30
# Returns the element if the array was not empty,
# otherwise returns empty string.
function
pop_past
()
{
eval
"
$1
=
${
(q)
dirhistory_past[
$#dirhistory_past
]
}
"
print
-v
$1
"
${
dirhistory_past
[
$#dirhistory_past
]
}
"
if
[[
$#dirhistory_past
-gt
0
]]
;
then
dirhistory_past[
$#dirhistory_past
]=()
fi
}
function
pop_future
()
{
eval
"
$1
=
${
(q)
dirhistory_future[
$#dirhistory_future
]
}
"
print
-v
$1
"
${
dirhistory_future
[
$#dirhistory_future
]
}
"
if
[[
$#dirhistory_future
-gt
0
]]
;
then
dirhistory_future[
$#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