* Stub for hiding a pane - not supported in iTerm2 backend. * iTerm2 doesn't have a direct equivalent to tmux's break-pane.
(
_paneId: PaneId,
_useExternalSession?: boolean,
)
| 343 | * iTerm2 doesn't have a direct equivalent to tmux's break-pane. |
| 344 | */ |
| 345 | async hidePane( |
| 346 | _paneId: PaneId, |
| 347 | _useExternalSession?: boolean, |
| 348 | ): Promise<boolean> { |
| 349 | logForDebugging('[ITermBackend] hidePane not supported in iTerm2') |
| 350 | return false |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | * Stub for showing a hidden pane - not supported in iTerm2 backend. |
nothing calls this directly
no test coverage detected