(lines int)
| 368 | } |
| 369 | |
| 370 | func allocateSpace(lines int) { |
| 371 | for range lines { |
| 372 | clearLine() |
| 373 | newLine() |
| 374 | carriageReturn() |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | func extraLines(s string) int { |
| 379 | return int(math.Floor(float64(lenAnsi(s)) / float64(goterm.Width()))) |
no test coverage detected