diff --git a/main.go b/main.go index 219b95b..01c5145 100644 --- a/main.go +++ b/main.go @@ -55,6 +55,7 @@ func showQueue() { reader, writer := io.Pipe() pagerDone := make(chan bool) go launchPager(reader, pagerDone) + // TODO: Figure out how to handle the pager closing before we're done writing for _, entry := range entries { fmt.Fprintf(writer, "%s\n", entry.String()) }