Up moves the cursor n lines up relative to the current position.
(n int)
| 26 | |
| 27 | // Up moves the cursor n lines up relative to the current position. |
| 28 | func Up(n int) { |
| 29 | cursor.Up(n) |
| 30 | autoheight += n |
| 31 | } |
| 32 | |
| 33 | // Down moves the cursor n lines down relative to the current position. |
| 34 | func Down(n int) { |