Down moves the cursor n lines down relative to the current position.
(n int)
| 15 | |
| 16 | // Down moves the cursor n lines down relative to the current position. |
| 17 | func (c *Cursor) Down(n int) { |
| 18 | c.move(0, n) |
| 19 | } |
| 20 | |
| 21 | // Right moves the cursor n characters to the right relative to the current position. |
| 22 | func (c *Cursor) Right(n int) { |