-
Notifications
You must be signed in to change notification settings - Fork 182
Description
Summary:
It would be very helpful if the user could start a debug server and keep it running for the time VSCode keeps running. This allows external processes to initiate the launch of the script while still connecting to the debug server in VSCode.
Example case:
Currently I'm working on a C++ API for python. This C++ API ends up in a .dll which python scripts load. In Visual Studio 19` I set launch options to call the python interpreter with the script. This allows me to debug the API on the C++ side. If the debug server would keep running on the VSCode side, and let the script connect the the python debugger in VSCode when initiated from Visual Studio, I would be able to hit breakpoints in both C++ (Visual Studio) and Python (VSCode).
It might be that this feature already exists but I couldn't find it in the documentation.
For what its worth, pydevd in Eclipse has this feature, and this keeps me attached to that platform. It is simply too powerful of a development feature.
Below some screenshots of the feature in pydev as exposed in Eclipse.

