Returns an ANSI sequence for forward-tab by n stops.
n
static String cursorHorizontalForwardTab(int n) => n == 1 ? '\x1b[I' : '\x1b[${n}I';