You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moves the cursor to row n, column m. The values are 1-based, and default to 1 (top left corner) if omitted. A sequence such as CSI ;5H is a synonym for CSI 1;5H as well as CSI 17;H is the same as CSI 17H and CSI 17;1H
Ansi.cursor(x,y) generates "CSI< x >;< y >H", it should generate "CSI< y + 1 >;< x + 1 >H" (x,y switched and 1-based, I'm assuming Ansi.cursor(x, y) is 0-based).
The text was updated successfully, but these errors were encountered:
Escape sequence to set cursor position is CSI n ; m H.
From https://en.wikipedia.org/wiki/ANSI_escape_code
Ansi.cursor(x,y) generates "CSI< x >;< y >H", it should generate "CSI< y + 1 >;< x + 1 >H" (x,y switched and 1-based, I'm assuming Ansi.cursor(x, y) is 0-based).
The text was updated successfully, but these errors were encountered: