Returns an ANSI sequence to insert n lines.
n
static String insertLine(int n) => n == 1 ? '\x1b[L' : '\x1b[${n}L';