Down moves the cursor down one line (if possible)
()
| 280 | |
| 281 | // Down moves the cursor down one line (if possible) |
| 282 | func (c *Cursor) Down() { |
| 283 | c.DownN(1) |
| 284 | } |
| 285 | |
| 286 | // Left moves the cursor left one cell (if possible) or to |
| 287 | // the previous line if it is at the beginning |