StartOfLine moves the cursor to the start of the current line.
()
| 92 | |
| 93 | // StartOfLine moves the cursor to the start of the current line. |
| 94 | func StartOfLine() { |
| 95 | HorizontalAbsolute(0) |
| 96 | } |
| 97 | |
| 98 | // StartOfLineDown moves the cursor down by n lines, then moves to cursor to the start of the line. |
| 99 | func StartOfLineDown(n int) { |
no test coverage detected
searching dependent graphs…