Sublime Forum

Can not open in chrome when I do right click: "open in a browser"

#1

Hello I am using OSX 10.12.3 and I tried to make a new Browser.sublime-settings with this text:

{
“supportedBrowsers”: {
“firefox”: [
{
“osname”: “posix”,
“platform”: “.",
“command”: “firefox”
},
{
“osname”: “nt”,
“platform”: “win32”,
“command”: “C:/Program Files (x86)/Mozilla Firefox/firefox.exe”
}
],
“safari”: [
{
“osname”: “posix”,
“platform”: “darwin”,
“command”: “open -a safari”
}
],
“iexplore”: [
{
“osname”: “nt”,
“platform”: “win32”,
“command”: “C:/Program Files/Internet Explorer/iexplore.exe”
}
],
“chrome”: [
{
“osname”: “posix”,
“platform”: “darwin”,
“command”: “open -a “/Applications/Google Chrome.app””
},
{
“osname”: “posix”,
“platform”: "linux.
”,
“command”: “google-chrome”
},
{
“osname”: “nt”,
“platform”: “win32”,
“command”: “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe”
}
],
“chromium”: [
{
“osname”: “posix”,
“platform”: “linux.*”,
“command”: “chromium”
}
]
},

“selectedBrowser”: “chrome”
}

{
“posix”: {
“linux”: {
“firefox”: “firefox -new-tab”,
“chrome”: “google-chrome”,
“chrome64”: “google-chrome”,
“chromium”: “chromium”
},
“linux2”: {
“firefox”: “firefox -new-tab”,
“chrome”: “google-chrome”,
“chrome64”: “google-chrome”,
“chromium”: “chromium”
},
“darwin”: {
“firefox”: “open -a “/Applications/Firefox.app””,
“safari”: “open -a “/Applications/Safari.app””,
“chrome”: “open -a “/Applications/Google Chrome.app””,
“chrome64”: “open -a “/Applications/Google Chrome.app””
}
},
“nt”: {
“win32”: {
“firefox”: “C:\Program Files (x86)\Mozilla Firefox\firefox.exe -new-tab”,
“iexplore”: “C:\Program Files\Internet Explorer\iexplore.exe”,
“chrome”: “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe”,
“chrome64”: “C:\Program Files (x86)\Google\Chrome\Application\chrome.exe”
}
},

"browser": "chrome"

}

And it does not open chrome

–Nikos

0 Likes