Dan Moseley

Results 401 comments of Dan Moseley

There are two settings files, one is the package settings (which has lots of defaults as you see) and the other is the user settings (which is empty by default)....

I think the next step is to debug. Unfortunately it looks like I didn't document in the wiki here how to do that. From memory, 1) Install the [Python tools](https://www.visualstudio.com/en-us/features/python-vs.aspx?WT.srch=1&WT.mc_ID=SEM_6bKol1gQ)...

@GhostInTheMachines apologies for missing your post. Somehow I got one in email that I don't see listed here. You said > Okay, I think I have all of these steps...

Incidentally, I greatly appreciate your efforts here -- I will have no time to work on this for the foreseeable future, and I believe that is true of the only...

When program files appears in the browser, it's because we passed empty quotes to launch Chrome, ie., "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 "" instead of "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 You can...

One other note -- I think if you launch Chrome yourself (including the debugging port flag) you should be able to attach with Web Inspector and avoid the launch problem....

Awesome. You probably want to put a breakpoint in SwiDebugStartChromeCommand.run() as that's where the command is constructed. You might be surprised by how straightforward the code is - most of...

For the AV -- strange. Do you have the latest version of Sublime? Do you have the latest version of the Python tools for Visual Studio? Check Tools>Extensions and see...

For "Failed to Create Data Directory" - try putting "chrome_profile" in your plugin settings, and set it to some arbitrary string. That should trigger the code below in swi.py to...

It looks like this works around it: ``` "chrome_profile": "C:\\Users\\YOUR USER NAME\\AppData\\Local\\Google\\Chrome\\User Data\\foo" ``` It used to be possible to just put "foo" or some arbitrary string, but it now...