pub const REQUEST_CURSOR_POSITION: &[u8] = b"\x1b[6n";
Request standard cursor position: exact bytes ESC [ 6 n (b"\x1b[6n").
ESC [ 6 n
b"\x1b[6n"
The terminal replies with CPR, ESC [ <line> ; <column> R, using one-based coordinates.
ESC [ <line> ; <column> R