i'm using sublime text 3.
when go tools -> xdebug -> start debugging (launch browser)
, internet explorer launches, although have set google chrome default browser in windows 10 settings.
i tried looking sublime text settings files did not find concerning default browsers.
is there way fix it?
xdebug client (which assume you're using) uses python's webbrowser
module launch browser. apparently, wrong windows setup, or way default browser defined has changed, webbrowser
's default functionality isn't working. can try opening sublime's console (view -> show console
or ctrl`) , entering following code:
import webbrowser; webbrowser.open("https://www.google.com")
i imagine based on problem ie open.
the way know of around this, short of modifying code xdebug, set browser
environment variable complete path chrome executable. once that, restart sublime, reconnect php server, , see if chrome works. can try above code again.
good luck!