summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authoruint <abhinav.prsai@gmail.com>2025-12-16 20:51:33 +0000
committeruint <abhinav.prsai@gmail.com>2025-12-16 20:51:33 +0000
commit99de1c3d272ba260c855afc09005f1391582d2a0 (patch)
treeb86fe11992356380c7fe85147ca031bffcb3b3dd /st.h
parentbdf88b676acc5cab1cc7425f582c723adf5b2706 (diff)
add scrollback
Diffstat (limited to 'st.h')
-rw-r--r--st.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.h b/st.h
index fd3b0d8..3cea73b 100644
--- a/st.h
+++ b/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,