Set scrollback history to 10000 lines

This commit is contained in:
Jonathan Hodgson 2019-09-08 10:32:34 +01:00
parent c59b803921
commit 249665b044

2
st.c
View file

@ -35,7 +35,7 @@
#define ESC_ARG_SIZ 16
#define STR_BUF_SIZ ESC_BUF_SIZ
#define STR_ARG_SIZ ESC_ARG_SIZ
#define HISTSIZE 2000
#define HISTSIZE 10000
/* macros */
#define IS_SET(flag) ((term.mode & (flag)) != 0)