Right moves the cursor n characters to the right relative to the current position.
(n int)
| 20 | |
| 21 | // Right moves the cursor n characters to the right relative to the current position. |
| 22 | func (c *Cursor) Right(n int) { |
| 23 | c.move(n, 0) |
| 24 | } |
| 25 | |
| 26 | // Left moves the cursor n characters to the left relative to the current position. |
| 27 | func (c *Cursor) Left(n int) { |