-
Notifications
You must be signed in to change notification settings - Fork 30k
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
Implement debug target launching in integrated terminal #10574
Comments
@isidorn I've added a first cut of this to the debug protocol and node-debug. |
Keep in mind that the command sent would be sent to the currently configured shell (bash, zsh, powershell, cmd, etc.). |
@weinand I'm not familiar with/haven't installed the Insiders builds yet - that change is in master, does that mean we can try it out in insiders from tomorrow? :) (Also, how releases are cut; presumably not from master if there's in-progress stuff like this that might not make the release? I searched but couldn't find any info on the relationship between branches/releases/etc.) |
@DanTup you can try this as soon as this issue is closed. Currently the VS Code side of things is missing (and we are not sure that this will be implemented in the August release). Releases are cut from Master. In-progress stuff will either be disabled or just not mentioned in the release notes. |
Released a first version of this. Please note the following:
|
Also |
@isidorn For node-debug I've introduced a new The |
@weinand This sounds great; we'll give it a go! With microsoft/vscode-node-debug#85 closed does this mean there's a working example of this for Node runnable in insiders from Monday? |
@DanTup yep, give it a try... |
@weinand Had a quick go, and this seems to work great! One question though - the |
@DanTup great to hear that runInTerminal works. "engines": {
"vscode": "^1.5.0",
"node": "^4.1.1"
}, |
@weinand I had updated |
@DanTup yes, that should stop people installing your extension in 1.4. |
This is the frontend implementation for microsoft/vscode-debugadapter-node#47.
The implementation for node-debug is this: microsoft/vscode-node-debug#85
The implementation would be based on #9957.
The text was updated successfully, but these errors were encountered: