added scrollback patch and modified it to only scroll half a page

This commit is contained in:
2025-09-10 16:22:36 +03:00
parent 73a89c36d3
commit 196996f9d3
12 changed files with 4405 additions and 122 deletions

10
st_h.rej Normal file
View File

@@ -0,0 +1,10 @@
--- st.h
+++ st.h
@@ -19,6 +19,7 @@
#define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
#define IS_TRUECOL(x) (1 << 24 & (x))
+#define HISTSIZE 2000
enum glyph_attribute {
ATTR_NULL = 0,