shithub: hell

Download patch

ref: 6fcd1c0425bc3d0a08384baba1c9a448413790ad
parent: a4c027741939d6217d5c0ab3ce94a5b646d70932
author: penny <penny@limitedideas.org>
date: Mon Oct 6 14:32:24 EDT 2025

enter toggles pause instead of juts unpausing

--- a/main.go
+++ b/main.go
@@ -54,9 +54,7 @@
 
 			//empty line
 			if command == "" && arguments == "" {
-				if hc.isPaused {
-					hc.pause(false)
-				}
+				hc.togglepause()
 				return
 			}
 
--- a/mastodon.go
+++ b/mastodon.go
@@ -189,7 +189,7 @@
 		plaintext = fmt.Sprintf("$username Reblogged %s> $boostuser $boostcontent $boosted_media_descriptions", ref.prefix + ref.ref)
 	} else {
 		selectedPost = post
-		plaintext = fmt.Sprintf("%s> $username $content $media_descriptions", ref.prefix + ref.ref)
+		plaintext = fmt.Sprintf("%s> $standard_status", ref.prefix + ref.ref)
 	}
 	formatter := &StatusFormatter{hc: hc, status: post, postContext: &ref}
 	templater := newStatusTemplateRenderer(formatter)
--