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
10925: Expose event for when terminals are closed. Note that is it as designed that this will only fire for terminals that are created by the API:
window.onDidCloseTerminal: Event<Terminal>
11275 & Creating a terminal and sending text to it should not show it #11384: The terminal panel will only ever be showed and focused if Terminal.show(focus?) is called. In v1.5 the following called used to show the panel: window.createTerminal, Terminal.dispose, Terminal.sendText
11919: Expose shell process ID. Ensure that the ID of the shell process is being exposed through the promise API:
Terminal.processId: Thenable<number>
The process tree is supposed to look like this:
VS Code renderer
./terminalProcess
Shell process (eg. /bin/bash), the PID for this should be returned
Programs started from within the terminal
The text was updated successfully, but these errors were encountered:
Test for #10917 #10925 #11275 #11384 #11919
Complexity: 5
The following changes were made to the terminal API, please test the relevant API calls to ensure they do what you think:
10917: Custom terminal shells can now be launched with custom arguments (though args don't work on Windows Integrated terminal: Shell args not honored on Windows #8429):
10925: Expose event for when terminals are closed. Note that is it as designed that this will only fire for terminals that are created by the API:
11275 & Creating a terminal and sending text to it should not show it #11384: The terminal panel will only ever be showed and focused if
Terminal.show(focus?)
is called. In v1.5 the following called used to show the panel:window.createTerminal
,Terminal.dispose
,Terminal.sendText
11919: Expose shell process ID. Ensure that the ID of the shell process is being exposed through the promise API:
The process tree is supposed to look like this:
/bin/bash
), the PID for this should be returnedThe text was updated successfully, but these errors were encountered: