StartOfLineUp moves the cursor up by n lines, then moves to cursor to the start of the line.
(n int)
| 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) { |
| 106 | Up(n) |
| 107 | StartOfLine() |
| 108 | } |
| 109 | |
| 110 | // UpAndClear moves the cursor up by n lines, then clears the line. |
| 111 | func UpAndClear(n int) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…