add newline after each doc in search output

This commit is contained in:
2026-07-06 09:35:03 +02:00
parent 035194b6f0
commit 4ddddb4cb0

View File

@@ -52,6 +52,6 @@ func PrintDoc(conf *cfg.Config, hit types.Hit) {
value := gjson.Get(docjson, conf.Path)
fmt.Println(value.String())
} else {
fmt.Print(docjson)
fmt.Println(docjson)
}
}