shithub: hell

Download patch

ref: 94a4e8b5be14b7ab94ac62b006509dbc04407910
parent: 55ae655adf9d58d87afbe4b79a10a8f14810af23
author: penny <penny@limitedideas.org>
date: Thu Sep 25 10:20:48 EDT 2025

fix bookmark print

--- a/main.go
+++ b/main.go
@@ -123,16 +123,17 @@
 				return
 			case "next":
 				hc.page.Next()
-				fmt.Printf(hc.page.String())
+				fmt.Print(hc.page.String())
 				return
 			case "bookmarks":
+				hc.pause(true)
 				hc.page = &Page{}
 				hc.page.loader = &StatusPages{hc: hc}
-				fmt.Printf(hc.page.String())
+				fmt.Print(hc.page.String())
 				return
 			case "notice":
 				defer hc.updatePrompt()
-				defer hc.pause(true)
+				hc.pause(true)
 				notifications, err := hc.GetUnreadNotifications()
 				if len(notifications) > 0 {
 					hc.PrintNotifications(notifications)
--