String cursorTo(int x, [int? y]) { return y == null || y == 0 ? '$csi${x + 1}G' : '$csi${y + 1};${x + 1}H'; }