1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Use explorer.exe as file manager if available

This commit is contained in:
Tarik02 2019-07-15 18:12:14 +03:00
parent 06e082c918
commit b4a5fa9615
3 changed files with 49 additions and 37 deletions

View File

@ -96,20 +96,24 @@ jo() {
output="$(autojump ${@})"
if [[ -d "${output}" ]]; then
case ${OSTYPE} in
linux*)
xdg-open "${output}"
;;
darwin*)
open "${output}"
;;
cygwin)
cygstart "" $(cygpath -w -a ${output})
;;
*)
echo "Unknown operating system: ${OSTYPE}." 1>&2
;;
esac
if command -v explorer.exe >/dev/null 2>&1; then
explorer.exe "${output}"
else
case ${OSTYPE} in
linux*)
xdg-open "${output}"
;;
darwin*)
open "${output}"
;;
cygwin)
cygstart "" $(cygpath -w -a ${output})
;;
*)
echo "Unknown operating system: ${OSTYPE}." 1>&2
;;
esac
fi
else
echo "autojump: directory '${@}' not found"
echo "\n${output}\n"

View File

@ -83,15 +83,19 @@ end
function jo
set -l output (autojump $argv)
if test -d "$output"
switch $OSTYPE
case 'linux*'
xdg-open (autojump $argv)
case 'darwin*'
open (autojump $argv)
case cygwin
cygstart "" (cygpath -w -a (pwd))
case '*'
__aj_err "Unknown operating system: \"$OSTYPE\""
if command --search explorer.exe >/dev/null 2>&1 do
explorer.exe (autojump $argv)
else
switch $OSTYPE
case 'linux*'
xdg-open (autojump $argv)
case 'darwin*'
open (autojump $argv)
case cygwin
cygstart "" (cygpath -w -a (pwd))
case '*'
__aj_err "Unknown operating system: \"$OSTYPE\""
end
end
else
__aj_err "autojump: directory '"$argv"' not found"

View File

@ -91,20 +91,24 @@ jo() {
setopt localoptions noautonamedirs
local output="$(autojump ${@})"
if [[ -d "${output}" ]]; then
case ${OSTYPE} in
linux*)
xdg-open "${output}"
;;
darwin*)
open "${output}"
;;
cygwin)
cygstart "" $(cygpath -w -a ${output})
;;
*)
echo "Unknown operating system: ${OSTYPE}" 1>&2
;;
esac
if command -v explorer.exe >/dev/null 2>&1; then
explorer.exe "${output}"
else
case ${OSTYPE} in
linux*)
xdg-open "${output}"
;;
darwin*)
open "${output}"
;;
cygwin)
cygstart "" $(cygpath -w -a ${output})
;;
*)
echo "Unknown operating system: ${OSTYPE}" 1>&2
;;
esac
fi
else
echo "autojump: directory '${@}' not found"
echo "\n${output}\n"