diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/functions.zsh | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/lib/functions.zsh b/lib/functions.zsh index f30653784..7410ae645 100644 --- a/lib/functions.zsh +++ b/lib/functions.zsh @@ -25,7 +25,9 @@ function open_command() {    case "$OSTYPE" in      darwin*)  open_cmd='open' ;;      cygwin*)  open_cmd='cygstart' ;; -    linux*)   open_cmd='xdg-open' ;; +    linux*)   [[ $(uname -a) =~ "Microsoft" ]] && \ +                open_cmd='cmd.exe /c start' || \ +                open_cmd='xdg-open' ;;      msys*)    open_cmd='start ""' ;;      *)        echo "Platform $OSTYPE not supported"                return 1 | 
