Increased HISTSIZE to 10000

This commit is contained in:
Ashish Kumar Yadav 2022-09-22 09:38:30 +05:30
parent 08e88a7a81
commit 0106a14a5f
1 changed files with 2 additions and 2 deletions

View File

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