Shell integration in the terminal could enable APIs like being able to listen to commands that run and get their output/exit code. Rough example: ```ts interface Terminal { executeCommand(command): Thenable<TerminalCommandResult>; } ```
Shell integration in the terminal could enable APIs like being able to listen to commands that run and get their output/exit code.
Rough example: