csiCursorHorizontalAbsoluteHandler function

void csiCursorHorizontalAbsoluteHandler(
  1. CSI csi,
  2. Terminal terminal
)

Implementation

void csiCursorHorizontalAbsoluteHandler(CSI csi, Terminal terminal) {
  var x = 1;

  if (csi.params.isNotEmpty) {
    x = csi.params.first;
  }

  terminal.buffer.setCursorX(x - 1);
}