select method

void select(
  1. int x
)

Repositions this cursor to the zero-based column x.

Implementation

void select(int x) {
  _ensureOpen();
  _checkResult(
    bindings.ghostty_render_state_row_cells_select(
      _handle,
      _checkNonNegative(x, 'x'),
    ),
    'ghostty_render_state_row_cells_select',
  );
}