shithub: hell

Download patch

ref: 43446595cdf7d6e9908d8f2b9dd2b3cfc577c899
parent: ae200213eaf1b3c49bc7a119bbc95f744685c8c6
author: penny <penny@limitedideas.org>
date: Wed Oct 1 10:28:10 EDT 2025

find the index end too when going backwards

--- a/pages.go
+++ b/pages.go
@@ -197,6 +197,7 @@
 	items = reverseArray(items)
 	newindex, _ := findIndex(windowheight, items)
 	page.index = page.index - newindex
+	page.findIndexEnd()
 	return
 }
 
--