MCPcopy Create free account
hub / github.com/driangle/taskmd / AddSeparator

Method AddSeparator

apps/cli/internal/cli/tablewriter.go:35–37  ·  view source on GitHub ↗

AddSeparator adds a row of dashes sized to match column widths. The actual dash strings are computed in Flush.

()

Source from the content-addressed store, hash-verified

33// AddSeparator adds a row of dashes sized to match column widths.
34// The actual dash strings are computed in Flush.
35func (tw *TableWriter) AddSeparator() {
36 tw.rows = append(tw.rows, tableRow{isSep: true})
37}
38
39// AddRow adds a data row. plain holds the visible text for width calculation;
40// colored holds the text to render (may contain ANSI codes).

Callers 13

outputNextTableFunction · 0.95
outputTagsTableFunction · 0.95
outputProjectsTableFunction · 0.95
outputSearchTableFunction · 0.95
outputTodosTableFunction · 0.95
outputPhasesTableFunction · 0.95
outputProjectTableFunction · 0.95

Calls

no outgoing calls