diff options
author | powwow@askgustav.com <powwow@askgustav.com> | 2021-03-07 21:47:46 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2021-07-09 15:28:14 (GMT) |
commit | ef76a26b0b1439c1a34632d91528fb2232a923b1 (patch) | |
tree | 257afdd734bbc26274c83c59335fd55b08862c54 | |
parent | 8bcd2dcd5f469758c31fff8f18c92817c0bf9fe7 (diff) | |
download | powwow-ef76a26b0b1439c1a34632d91528fb2232a923b1.zip powwow-ef76a26b0b1439c1a34632d91528fb2232a923b1.tar.gz powwow-ef76a26b0b1439c1a34632d91528fb2232a923b1.tar.bz2 |
increase some history limits
-rw-r--r-- | src/defines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/defines.h b/src/defines.h index 194b933..1e273e1 100644 --- a/src/defines.h +++ b/src/defines.h @@ -75,8 +75,8 @@ #define PARAMLEN 99 /* initial length of text strings */ #define MAX_MAPLEN 1000 /* maximum length of automapped path */ #define MIN_WORDLEN 3 /* the minimum length for history words */ -#define MAX_WORDS 512 /* number of words kept for TAB-completion */ -#define MAX_HIST 128 /* number of history lines kept */ +#define MAX_WORDS 4096 /* number of words kept for TAB-completion */ +#define MAX_HIST 2048 /* number of history lines kept */ #define LOG_MAX_HASH 7 #define MAX_HASH (1<<LOG_MAX_HASH) /* max hash value, must be a power of 2 */ #define NUMPARAM 10 /* number of local unnamed params allowed |