StartOfLineDown moves the cursor down by n lines, then moves to cursor to the start of the line.
(n int)
| 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) { |
| 100 | Down(n) |
| 101 | StartOfLine() |
| 102 | } |
| 103 | |
| 104 | // StartOfLineUp moves the cursor up by n lines, then moves to cursor to the start of the line. |
| 105 | func StartOfLineUp(n int) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…