sokolovstas / SublimeWebInspector

Web Inspector allow you debug Javascript right in the editor

Home Page:http://sokolovstas.github.com/SublimeWebInspector

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

x64 Windows Unsupported?

gravidThoughts opened this issue · comments

Get the following in Sublime console when trying to launch Google on the debug port.

File "swi in C:\Users\ccopelm2\AppData\Roaming\Sublime Text 3\Installed Packages\Web Inspector.sublime-package", line 253, in run KeyError: 'windows_x64'

Does it not support x64 Windows?

I set the chrome_path as follows

"chrome_path": {
    "osx": "",
    "windows": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
    "linux": ""
},

Hi gravidThoughts,

You have to use the key "windows_x64".

    "chrome_path": {
        "windows_x64": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
    }

The bug is that sublime.arch() returns x86 even on x64 OS presumably because it's a 32 bit app.

Fixed by 89d04d8