Right moves the cursor n characters to the right relative to the current position.
(n int)
| 41 | |
| 42 | // Right moves the cursor n characters to the right relative to the current position. |
| 43 | func Right(n int) { |
| 44 | cursor.Right(n) |
| 45 | } |
| 46 | |
| 47 | // Left moves the cursor n characters to the left relative to the current position. |
| 48 | func Left(n int) { |
searching dependent graphs…