Down moves the cursor n lines down relative to the current position.
(n int)
| 32 | |
| 33 | // Down moves the cursor n lines down relative to the current position. |
| 34 | func Down(n int) { |
| 35 | cursor.Down(n) |
| 36 | |
| 37 | if autoheight > 0 { |
| 38 | autoheight -= n |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | // Right moves the cursor n characters to the right relative to the current position. |
| 43 | func Right(n int) { |
searching dependent graphs…