-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to launch or attach to firefox #185
Comments
Its probably because its like 2 years old on openvsx https://open-vsx.org/extension/firefox-devtools/vscode-firefox-debug |
Well that's depressing.. any way to install it manually? |
You could build it and replace what was placed in |
Thanks! I'll give it a shot |
The error I saw before is gone, but firefox is still not launching 🤔 ⟸ process/stopped ::
⟸ process/starting :: ['/usr/local/bin/node', '/Users/lev/Library/Application Support/Sublime Text/Packages/Debugger/data/adapters/firefox/extension/dist/adapter.bundle.js']
⟸ process/started ::
⟸ request/initialize(1) :: {'clientID': 'sublime', 'clientName': 'Sublime Text', 'adapterID': 'firefox', 'pathFormat': 'path', 'linesStartAt1': True, 'columnsStartAt1': True, 'supportsVariableType': True, 'supportsVariablePaging': False, 'supportsRunInTerminalRequest': True, 'supportsMemoryReferences': True, 'locale': 'en-us'}
⟹ response/initialize(1) :: {'supportsConfigurationDoneRequest': False, 'supportsEvaluateForHovers': False, 'supportsFunctionBreakpoints': False, 'supportsConditionalBreakpoints': True, 'supportsSetVariable': True, 'supportsCompletionsRequest': True, 'supportsDelayedStackTraceLoading': True, 'supportsHitConditionalBreakpoints': True, 'supportsLogPoints': True, 'supportsDataBreakpoints': True, 'supportsBreakpointLocationsRequest': True, 'exceptionBreakpointFilters': [{'filter': 'all', 'label': 'All Exceptions', 'default': False}, {'filter': 'uncaught', 'label': 'Uncaught Exceptions', 'default': True}]}
⟸ request/launch(2) :: {'name': 'Launch firefox 🦊', 'port': 3000, 'reAttach': True, 'request': 'launch', 'type': 'firefox', 'url': 'http://localhost:3000/index.html', 'webRoot': '/Users/lev/Projects/zencity/community/client'}
⟹ event/initialized :: None
⟸ request/setExceptionBreakpoints(3) :: {'filters': ['uncaught'], 'filterOptions': [ExceptionFilterOptions(filterId='uncaught', condition=None)]}
⟸ request/setDataBreakpoints(4) :: {'breakpoints': []}
⟹ response/setExceptionBreakpoints(3) :: None
⟹ response/setDataBreakpoints(4) :: {'breakpoints': []}
|
I think you are asking firefox to use the same port for remote debugging that you are using for serving your content which is probably causing issues |
thanks! now firefox launches but the debugger fails to attach. this my current config: {
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "Launch firefox 🦊",
"url": "http://localhost:3000/index.html",
"webRoot": "${folder}",
}, and this is the error i'm seeing in the debugger console: connect ECONNREFUSED ::1:6000
Debugging ended if i understood this correctly, port 6000 is supposed to be used in attach mode only. |
As far as I can tell the You can look to see what port is being used by firefox with |
Tried the port that's configured there (6080) but still getting the same error. btw, I tried the same config in VSCode and it works there so I'm kinda stuck. |
Hi and thanks for this plugin. The last few releases were really 🔥 !
While the chrome adapter works without any issues I can't seem to get firefox to work in either
launch
orattach
mode.I'm getting the following error in the Sublime console:
Debugger: Nothing to read from process, closing Debugger: error: event ignored not implemented unknownSource
This is my config for launching firefox:
The text was updated successfully, but these errors were encountered: