Cancel a running `!` shell command by its commandId (e.g. on Esc / Ctrl+C).
(commandId: string)
| 126 | |
| 127 | /** Cancel a running `!` shell command by its commandId (e.g. on Esc / Ctrl+C). */ |
| 128 | async cancelShellCommand(commandId: string): Promise<void> { |
| 129 | this.ensureOpen(); |
| 130 | return this.rpc.cancelShellCommand({ sessionId: this.id, commandId }); |
| 131 | } |
| 132 | |
| 133 | async steer(input: string | PromptInput): Promise<void> { |
| 134 | this.ensureOpen(); |
no test coverage detected