resize method

void resize(
  1. int width,
  2. int height
)

Implementation

void resize(int width, int height) {
  _tabs?.resize(width);
  _scrollHeight = 0;
  // Important: resizing MUST NOT implicitly clear the screen. Upstream UV
  // keeps resize side-effect free; callers explicitly call `erase()` when
  // they want a full clear (parity tests depend on this).
}