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
VS Code now shows debug progress events via silent progress notifications.
Have a debug extensions that implements Progress Events, or use and modify the Mock Debug Extension https://github.com/microsoft/vscode-mock-debug (progress event is started by typing progress in debug console after staring a debug session).
Refs: #92253
Complexity: 4
VS Code now shows
debug progress events
via silent progress notifications.Have a debug extensions that implements Progress Events, or use and modify the Mock Debug Extension https://github.com/microsoft/vscode-mock-debug (progress event is started by typing
progress
in debug console after staring a debug session).Verify:
cancellable
make sure VS Code renders a Cancel button in the notification and pressingCancel
stops the progresslabel
of the debug extension is rendered as thesource
for the notificationprogressUpdate
event is respected (check thatmessage
gets updated)progressStart
andprogressEnd
is shorter than 500 ms no progress is shown at all.progressUpdateEvent
withpercentage
attribute is respectedThe text was updated successfully, but these errors were encountered: