@@ -338,7 +338,7 @@ setclip(){ | |||||
fi | fi | ||||
} | } | ||||
_open_file(){ | |||||
open_file(){ | |||||
if iswindows | if iswindows | ||||
then | then | ||||
cmd.exe //c start "" "$@" | cmd.exe //c start "" "$@" | ||||
@@ -360,11 +360,11 @@ _open_file(){ | |||||
o(){ | o(){ | ||||
if test $# -eq 0 | if test $# -eq 0 | ||||
then | then | ||||
_open_file . | |||||
open_file . | |||||
else | else | ||||
for f in "$@" | for f in "$@" | ||||
do | do | ||||
_open_file "$f" | |||||
open_file "$f" | |||||
done | done | ||||
fi | fi | ||||
} | } | ||||