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
namespacewindow{/** * An event which fires when the terminal's child pseudo-device is written to (the shell). * In other words, this provides access to the raw data stream from the process running * within the terminal, including VT sequences. */exportconstonDidWriteTerminalData: Event<TerminalDataWriteEvent>;}
Create a hidden terminal, say powershell
Events are fired
Look for shell integration sequence: "\x1b]633;A\x07" in the "data" param
If I create a normal terminal, the shell integration sequences seem to be there. Seems related to #199611.