()
| 466 | // "Jump to bottom" when count is 0 (scrolled away but no new messages yet — |
| 467 | // the dead zone where users previously thought chat stalled). |
| 468 | function _temp3() { |
| 469 | if (!isFullscreenEnvEnabled()) { |
| 470 | return; |
| 471 | } |
| 472 | const ink = instances.get(process.stdout); |
| 473 | if (!ink) { |
| 474 | return; |
| 475 | } |
| 476 | ink.onHyperlinkClick = _temp2; |
| 477 | return () => { |
| 478 | ink.onHyperlinkClick = undefined; |
| 479 | }; |
| 480 | } |
| 481 | function _temp2(url) { |
| 482 | if (url.startsWith("file:")) { |
| 483 | try { |
nothing calls this directly
no test coverage detected