branch: master
commit c9ebe9738c97a38bd2ebd83600b6848aa2f6dfb3
Author: Eric Danan <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-locate-action-extern): handle cygwin
    
    Fixes #1314
---
 counsel.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/counsel.el b/counsel.el
index 7004e71..dc71468 100644
--- a/counsel.el
+++ b/counsel.el
@@ -1891,6 +1891,7 @@ string - the full shell command to run."
                   (format "%s %s"
                           (cl-case system-type
                             (darwin "open")
+                            (cygwin "cygstart")
                             (t "xdg-open"))
                           (shell-quote-argument x)))))
 

Reply via email to