aboutsummaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorMarcel Screm <marcel@marcelscrem.com>2025-12-28 12:20:32 +0100
committerMarcel Screm <marcel@marcelscrem.com>2025-12-28 12:20:32 +0100
commit9b35a7d9c3e05d78819421f376f08505edec38d2 (patch)
tree5ff2480538817ef6cde9bd18d317fb734ccdcf56 /st.h
parent034c96dec581a3a870a6883303dabe2f0bad704f (diff)
added scrollback patch
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,