Send a special key (e.g. Escape, C-c, Enter).
(key: string)
| 143 | |
| 144 | /** Send a special key (e.g. Escape, C-c, Enter). */ |
| 145 | async sendKey(key: string): Promise<void> { |
| 146 | tmuxSendKey(this.name, key) |
| 147 | } |
| 148 | |
| 149 | /** Capture current terminal output, optionally waiting first. */ |
| 150 | async capture(waitSeconds?: number): Promise<string> { |