diff options
author | Yuri D'Elia <wavexx@thregr.org> | 2020-07-13 13:14:47 +0200 |
---|---|---|
committer | Yuri D'Elia <wavexx@thregr.org> | 2020-07-13 13:14:47 +0200 |
commit | 54d4307a2e065ed41f4ee786805e1830fce5e320 (patch) | |
tree | b20f0046e8c1f169630112e43fb594257829651e | |
parent | f3304bdc1c215e733b9a2ee6a228e64f663c2b09 (diff) | |
download | git-bug-54d4307a2e065ed41f4ee786805e1830fce5e320.tar.gz |
Trim titles in list views
-rw-r--r-- | commands/ls.go | 4 | ||||
-rw-r--r-- | termui/bug_table.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/commands/ls.go b/commands/ls.go index ad61a852..da75b5bc 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -210,7 +210,7 @@ func lsDefaultFormatter(env *Env, bugExcerpts []*cache.BugExcerpt) error { // truncate + pad if needed labelsFmt := text.TruncateMax(labelsTxt.String(), 10) - titleFmt := text.LeftPadMaxLine(b.Title, 50-text.Len(labelsFmt), 0) + titleFmt := text.LeftPadMaxLine(strings.TrimSpace(b.Title), 50-text.Len(labelsFmt), 0) authorFmt := text.LeftPadMaxLine(name, 15, 0) comments := fmt.Sprintf("%4d 💬", b.LenComments) @@ -231,7 +231,7 @@ func lsDefaultFormatter(env *Env, bugExcerpts []*cache.BugExcerpt) error { func lsPlainFormatter(env *Env, bugExcerpts []*cache.BugExcerpt) error { for _, b := range bugExcerpts { - env.out.Printf("%s [%s] %s\n", b.Id.Human(), b.Status, b.Title) + env.out.Printf("%s [%s] %s\n", b.Id.Human(), b.Status, strings.TrimSpace(b.Title)) } return nil } diff --git a/termui/bug_table.go b/termui/bug_table.go index e57a2b15..c02570db 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -319,7 +319,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { id := text.LeftPadMaxLine(excerpt.Id.Human(), columnWidths["id"], 1) status := text.LeftPadMaxLine(excerpt.Status.String(), columnWidths["status"], 1) labels := text.TruncateMax(labelsTxt.String(), minInt(columnWidths["title"]-2, 10)) - title := text.LeftPadMaxLine(excerpt.Title, columnWidths["title"]-text.Len(labels), 1) + title := text.LeftPadMaxLine(strings.TrimSpace(excerpt.Title), columnWidths["title"]-text.Len(labels), 1) author := text.LeftPadMaxLine(authorDisplayName, columnWidths["author"], 1) comments := text.LeftPadMaxLine(summaryTxt, columnWidths["comments"], 1) lastEdit := text.LeftPadMaxLine(humanize.Time(lastEditTime), columnWidths["lastEdit"], 1) |