(top: number, bottom: number)
| 263 | |
| 264 | /** Set scroll region (DECSTBM, CSI top;bottom r). 1-indexed, inclusive. */ |
| 265 | export function setScrollRegion(top: number, bottom: number): string { |
| 266 | return csi(top, bottom, 'r') |
| 267 | } |
| 268 | |
| 269 | /** Reset scroll region to full screen (DECSTBM, CSI r). Homes the cursor. */ |
| 270 | export const RESET_SCROLL_REGION = csi('r') |