Browse Source

Add support for cygwin open in web-search plugin

Marc Cornellà 9 years ago
parent
commit
c45885093f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      plugins/web-search/web-search.plugin.zsh

+ 1 - 0
plugins/web-search/web-search.plugin.zsh

@@ -16,6 +16,7 @@ function web_search() {
   # define the open command
   case "$OSTYPE" in
     darwin*)  open_cmd="open" ;;
+    cygwin*)  open_cmd="cygstart" ;;
     linux*)   open_cmd="xdg-open" ;;
     *)        echo "Platform $OSTYPE not supported"
               return 1