feat: UI redesign, capture grammar, demo command #14

Merged
lerko merged 23 commits from develop into main 2026-05-16 20:07:28 +00:00
Showing only changes of commit f4e178e3ee - Show all commits
+6 -1
View File
@@ -63,8 +63,13 @@ func runCards(_ *cobra.Command, _ []string) error {
tagStr += " #" + tag tagStr += " #" + tag
} }
label := e.Body
if e.Title != nil {
label = *e.Title
}
fmt.Printf("%s %-40s %-16s %3d× %s\n", fmt.Printf("%s %-40s %-16s %3d× %s\n",
glyph, e.Body, glyph, label,
strings.TrimSpace(tagStr), strings.TrimSpace(tagStr),
e.UseCount, shortID) e.UseCount, shortID)
} }