From 0687ff25f673cb9fc4d6ca746f9922b2130b59f8 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Thu, 18 Apr 2024 16:16:16 +0200 Subject: [PATCH] increase histsize --- patches/histsize.diff | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 patches/histsize.diff diff --git a/patches/histsize.diff b/patches/histsize.diff new file mode 100644 index 0000000..1a2d4c4 --- /dev/null +++ b/patches/histsize.diff @@ -0,0 +1,11 @@ +--- a/st.h ++++ b/st.h +@@ -27,7 +27,7 @@ + + #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b)) + #define IS_TRUECOL(x) (1 << 24 & (x)) +-#define HISTSIZE 2000 ++#define HISTSIZE 7500 + + enum glyph_attribute { + ATTR_NULL = 0,