Left moves the cursor n characters to the left relative to the current position.
(n int)
| 46 | |
| 47 | // Left moves the cursor n characters to the left relative to the current position. |
| 48 | func Left(n int) { |
| 49 | cursor.Left(n) |
| 50 | } |
| 51 | |
| 52 | // HorizontalAbsolute moves the cursor to n horizontally. |
| 53 | // The position n is absolute to the start of the line. |
searching dependent graphs…