Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use explorer.exe as file manager if available #582

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 18 additions & 14 deletions bin/autojump.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
22 changes: 13 additions & 9 deletions bin/autojump.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
32 changes: 18 additions & 14 deletions bin/autojump.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down