You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For debugpy it'd be interesting to have a message which allows the debugger to be notified of changes to an edited file so that it can reload the contents of the file in the debugger.
The text was updated successfully, but these errors were encountered:
The recommended way to address this problem is to run a file watcher from the debug adapter. This is what all debug extension that support hot reload do.
Sending file change notification from the client would only work for simple cases. Whenever there is a build process that transforms the source into some intermediate format, VS Code does not know what the resulting file is.
For
debugpy
it'd be interesting to have a message which allows the debugger to be notified of changes to an edited file so that it can reload the contents of the file in the debugger.The text was updated successfully, but these errors were encountered: