- Eclipse->Preferences->General->Web Browser
- Select "Use external Web browser"
- Select "New..."
- Name = "Chrome"
- Location = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome
- Parameters = "%URL%"
But that doesn't work for some reason - not really sure why. To get it to work I had to use a shell script:
open -a '/Applications/Google Chrome.app' $1 &
and use that as my executable.
1 comments:
Thanks for this tip! I've spent hours trying to get this to work, and your soluton is the only one that has for me.
Post a Comment