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
We've added a debug.onDidChangeActiveStackItem event that can be used to track the focused debug session.
Create a hello world extension.
Add a listener for debug.onDidChangeActiveStackItem and observe the value of debug.activeStackItem.
Start debugging your extension, and then in that window, start a couple other debug sessions (you can use the Debug: Open Link command as an example).
Validate the value and event behave as expected, and read through the docstrings and make sure they makes sense. The active stack item should change whenever a debug session pauses (and becomes active) or when the user selects another session in the Call Stack view. Ending the active session should focus another session, or undefined if there are no others.
The text was updated successfully, but these errors were encountered:
Refs: #63943
Complexity: 3
Create Issue
We've added a
debug.onDidChangeActiveStackItem
event that can be used to track the focused debug session.debug.onDidChangeActiveStackItem
and observe the value ofdebug.activeStackItem
.Debug: Open Link
command as an example).The text was updated successfully, but these errors were encountered: