Add little UI script using fzf (#25)

* added Taglist template helper
* added simple fzf ui script
This commit is contained in:
T.v.Dein
2025-02-17 13:47:20 +01:00
committed by GitHub
parent be13ec1111
commit eb18e97c0d
2 changed files with 99 additions and 0 deletions

View File

@@ -62,6 +62,10 @@ type DbTag struct {
Keys []string `json:"key"`
}
func (entry *DbEntry) Taglist() string {
return strings.Join(entry.Tags, ",")
}
const BucketData string = "data"
func GetDbFile(file string) string {