DownN moves the cursor down N lines (if possible)
(amount int)
| 270 | |
| 271 | // DownN moves the cursor down N lines (if possible) |
| 272 | func (c *Cursor) DownN(amount int) { |
| 273 | c.UpN(-amount) |
| 274 | } |
| 275 | |
| 276 | // Up moves the cursor up one line (if possible) |
| 277 | func (c *Cursor) Up() { |
no test coverage detected