(screen tcell.Screen, x, y int, st tcell.Style, format string, a ...any)
| 115 | } |
| 116 | |
| 117 | func (win *win) printf(screen tcell.Screen, x, y int, st tcell.Style, format string, a ...any) { |
| 118 | win.print(screen, x, y, st, fmt.Sprintf(format, a...)) |
| 119 | } |
| 120 | |
| 121 | func (win *win) printLine(screen tcell.Screen, x, y int, st tcell.Style, s string) { |
| 122 | win.printf(screen, x, y, st, "%s%*s", s, win.w-printLength(s), "") |