()
| 63 | } |
| 64 | |
| 65 | func clearLine() { |
| 66 | if disableAnsi { |
| 67 | return |
| 68 | } |
| 69 | // Does not move cursor from its current position |
| 70 | fmt.Print(aec.EraseLine(aec.EraseModes.Tail)) |
| 71 | } |
| 72 | |
| 73 | func moveCursorUp(lines int) { |
| 74 | if disableAnsi { |
no outgoing calls
no test coverage detected