move_to_column method

void move_to_column(
  1. int number
)

Moves the the column specified in number.

Implementation

void move_to_column(
  final int number,
) {
  write_ansi(
    '${number}G',
  );
}