(sequence: string)
| 307 | } |
| 308 | |
| 309 | private forwardInputSequence(sequence: string): void { |
| 310 | if (!this.inputHandler) return; |
| 311 | const isAppleTerminal = sequence === "\r" && isAppleTerminalSession(); |
| 312 | const input = normalizeAppleTerminalInput( |
| 313 | sequence, |
| 314 | isAppleTerminal, |
| 315 | isAppleTerminal && isNativeModifierPressed("shift"), |
| 316 | ); |
| 317 | this.inputHandler(input); |
| 318 | } |
| 319 | |
| 320 | private enableModifyOtherKeys(): void { |
| 321 | if (this._kittyProtocolActive || this._modifyOtherKeysActive) return; |
no test coverage detected