Left moves the cursor n characters to the left relative to the current position.
(n int)
| 25 | |
| 26 | // Left moves the cursor n characters to the left relative to the current position. |
| 27 | func (c *Cursor) Left(n int) { |
| 28 | c.move(-n, 0) |
| 29 | } |
| 30 | |
| 31 | func (c *Cursor) move(x int, y int) { |
| 32 | handle := syscall.Handle(c.writer.Fd()) |