MCPcopy Index your code
hub / github.com/docker/cli / PrintL

Method PrintL

cli/command/image/tree.go:513–527  ·  view source on GitHub ↗
(clr aec.ANSI, s string)

Source from the content-addressed store, hash-verified

511}
512
513func (h imgColumn) PrintL(clr aec.ANSI, s string) string {
514 ln := tui.Width(s)
515
516 fill := h.Width - ln
517
518 if fill < 0 {
519 if h.NoEllipsis {
520 fill = 0
521 } else {
522 return clr.Apply(tui.Ellipsis(s, h.Width))
523 }
524 }
525
526 return clr.Apply(s) + strings.Repeat(" ", fill)
527}
528
529func (h imgColumn) PrintR(clr aec.ANSI, s string) string {
530 ln := tui.Width(s)

Callers 1

PrintMethod · 0.95

Calls 1

ApplyMethod · 0.80

Tested by

no test coverage detected