Check if a row in the active screen is wrapped (soft-wrapped to next line)
(row: number)
| 602 | |
| 603 | /** Check if a row in the active screen is wrapped (soft-wrapped to next line) */ |
| 604 | isRowWrapped(row: number): boolean { |
| 605 | return this.exports.ghostty_terminal_is_row_wrapped(this.handle, row) !== 0; |
| 606 | } |
| 607 | |
| 608 | /** Hyperlink URI not yet exposed in simplified API */ |
| 609 | getHyperlinkUri(_id: number): string | null { |
no test coverage detected