summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doTag.go19
1 files changed, 13 insertions, 6 deletions
diff --git a/doTag.go b/doTag.go
index 2f1e958..8d0692a 100644
--- a/doTag.go
+++ b/doTag.go
@@ -86,19 +86,26 @@ func makeTagTablePB(pb *gitpb.GitTags) *gitpb.GitTagsTable {
col.Width = 16
// col.Width = -1
- cola := t.AddTimeFunc("age", func(repo *gitpb.GitTag) time.Time {
+ col = t.AddTimeFunc("age", func(repo *gitpb.GitTag) time.Time {
// todo
return time.Now()
})
- cola.Width = 6
+ col.Width = 6
- cola = t.AddTimeFunc("ctime", func(tag *gitpb.GitTag) time.Time {
+ col = t.AddTimeFunc("ctime", func(tag *gitpb.GitTag) time.Time {
// todo
return tag.Creatordate.AsTime()
})
- cola.Width = 16
- tmp := t.AddSubject()
- tmp.Width = -1
+ col.Width = 16
+
+ col = t.AddIntFunc("int", func(tag *gitpb.GitTag) int {
+ // todo
+ return 3
+ })
+ col.Width = 4
+
+ col = t.AddSubject()
+ col.Width = 16
return t
}