StartOfLineUp moves the cursor up by n lines, then moves to cursor to the start of the line.
(n int)
| 112 | |
| 113 | // StartOfLineUp moves the cursor up by n lines, then moves to cursor to the start of the line. |
| 114 | func (area *Area) StartOfLineUp(n int) { |
| 115 | area.Up(n) |
| 116 | area.StartOfLine() |
| 117 | } |
| 118 | |
| 119 | // UpAndClear moves the cursor up by n lines, then clears the line. |
| 120 | func (area *Area) UpAndClear(n int) { |
nothing calls this directly
no test coverage detected