mirror of https://github.com/ohmyzsh/ohmyzsh.git
Merge pull request #2974 from elliottwilliams/patch-1
Fix osx function: "not valid in this context"
This commit is contained in:
commit
6118446575
|
@ -139,7 +139,7 @@ function man-preview() {
|
||||||
|
|
||||||
function trash() {
|
function trash() {
|
||||||
local trash_dir="${HOME}/.Trash"
|
local trash_dir="${HOME}/.Trash"
|
||||||
local temp_ifs=$IFS
|
local temp_ifs="$IFS"
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
if [[ -e "$item" ]]; then
|
if [[ -e "$item" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue