mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
Dont clobber fish_browser if cygstart is available
This commit is contained in:
parent
c3374ffd08
commit
dacc0b595c
1 changed files with 4 additions and 3 deletions
|
@ -77,7 +77,8 @@ function help --description 'Show help for the fish shell'
|
||||||
#
|
#
|
||||||
# We use this instead of xdg-open because that's useless without a backend
|
# We use this instead of xdg-open because that's useless without a backend
|
||||||
# like wsl-open which we'll check in a minute.
|
# like wsl-open which we'll check in a minute.
|
||||||
if set -l cmd (command -s cmd.exe /mnt/c/Windows/System32/cmd.exe)
|
if not type -q cygstart
|
||||||
|
and set -l cmd (command -s cmd.exe /mnt/c/Windows/System32/cmd.exe)
|
||||||
# Use the first of these.
|
# Use the first of these.
|
||||||
set fish_browser $cmd[1]
|
set fish_browser $cmd[1]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue