-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
debugger support for dx #3814
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
debugger support for dx #3814
Conversation
Awesome! As a side, what tool did you use to record that video? 😄 |
Does this work inside a dev container? - jkelleyrtp/cargo-debugger#2 . Might be worth testing with https://github.com/DioxusLabs/dioxus/tree/main/.devcontainer if not already done |
Unfortunately no, since we call To add web support, I had to add an extra handler to our vscode extension, so in theory, the two could work together, but I wouldn't even know where to start to get it working. |
That's unfortunate, we do all our coding inside dev containers.
I've never made a vscode extension myself, so I don't know either. But this would definitely be appreciated if you go this route. |
* add vscode debugger for apps * todo: need to disconnect when rebuilding * update debugger * add uri handler to remote launch the debugger * attach * dont panic * fixed it - hung processes are not errors * wip: android debugger * clean it up a bit * revert ios stdout/stderr * wire up pid from ios * use target family instead of target_arch * fix android * bring back softkill * typo
* add vscode debugger for apps * todo: need to disconnect when rebuilding * update debugger * add uri handler to remote launch the debugger * attach * dont panic * fixed it - hung processes are not errors * wip: android debugger * clean it up a bit * revert ios stdout/stderr * wire up pid from ios * use target family instead of target_arch * fix android * bring back softkill * typo
Powered by the same tooling from http://github.com/jkelleyrtp/cargo-debugger
Lets you open the current app in vscode's debugger by pressing
d
.todo:
We should allow configuration of the debugger at some point since people seem to use gdb, dap, etc, but for now this works well with our vscode-oriented workflow.
debugger-dx.mp4