From 493b08d185c784069f45be410eb9dc8d556dfb6d Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 18 Jul 2025 17:14:40 -0400 Subject: Add newline to default outputer --- pkg/query/outputs.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/query') diff --git a/pkg/query/outputs.go b/pkg/query/outputs.go index 92331ef..af00bdf 100644 --- a/pkg/query/outputs.go +++ b/pkg/query/outputs.go @@ -100,6 +100,7 @@ func (o DefaultOutput) writeDoc(w io.Writer, doc *index.Document) (int, error) { []byte(strings.Join(doc.Authors, ",")), []byte(" tags:"), []byte(strings.Join(doc.Tags, ",")), + {'\n'}, } for _, b := range s { cnt, err := w.Write(b) -- cgit v1.2.3