From 4284307579021af67a92d3f306f840b79da31764 Mon Sep 17 00:00:00 2001
From: jostber <jbernts@broadpark.no>
Date: Wed, 3 Apr 2013 13:48:23 +0200
Subject: [PATCH 1/2] Updated cygwin code to start file explorer correctly

---
 bin/autojump.bash | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/autojump.bash b/bin/autojump.bash
index 2d6580b..1bc4940 100644
--- a/bin/autojump.bash
+++ b/bin/autojump.bash
@@ -111,7 +111,7 @@ function jo {
                 open "$(autojump $@)"
                 ;;
             cygwin)
-                cmd /C start "" $(cygpath -w -a $(pwd))
+                cygstart "" $(cygpath -w -a $(pwd))
                 ;;
             *)
                 echo "Unknown operating system." 1>&2

From a97c51675807ae4116c216314141a5eb008f2f34 Mon Sep 17 00:00:00 2001
From: jostber <jbernts@broadpark.no>
Date: Wed, 3 Apr 2013 13:50:37 +0200
Subject: [PATCH 2/2] Updated cygwin code as for autojump.bash

---
 bin/autojump.zsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/autojump.zsh b/bin/autojump.zsh
index 9252934..edaf90c 100644
--- a/bin/autojump.zsh
+++ b/bin/autojump.zsh
@@ -75,7 +75,7 @@ function jo {
                 open "$(autojump $@)"
                 ;;
             cygwin)
-                cmd /C start "" $(cygpath -w -a $(pwd))
+                cygstart "" $(cygpath -w -a $(pwd))
                 ;;
             *)
                 echo "Unknown operating system." 1>&2