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
Listen to terminal exit using the new Terminal.exitStatus API, onDidOpenTerminal and onDidCloseTerminal events are helpful or this. Test the following:
Before the terminal has exited (should be undefined)
Exiting explicitly by typing exit 1 or exit 0 (should be { code: 1 } or { code: 0 })
Exit by hitting trash icon (should be { code: undefined })
Ensure docs make sense
The text was updated successfully, but these errors were encountered:
Refs: #62103
Complexity: 3
Terminal.exitStatus
API,onDidOpenTerminal
andonDidCloseTerminal
events are helpful or this. Test the following:undefined
)exit 1
orexit 0
(should be{ code: 1 }
or{ code: 0 }
){ code: undefined }
)The text was updated successfully, but these errors were encountered: