From b4a5871809d14c9c0faa87a7a80cee8dcccff749 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Sat, 20 Jun 2015 15:59:25 -0300 Subject: defaults: set 'history' to 10000 by default. #2868 Note: the new history value is the max allowed. Re: https://github.com/neovim/neovim/issues/2676 --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim') diff --git a/src/nvim/option.c b/src/nvim/option.c index e76edcc672..e880e9aadd 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -870,7 +870,7 @@ static vimoption_T SCRIPTID_INIT}, {"history", "hi", P_NUM|P_VIM, (char_u *)&p_hi, PV_NONE, - {(char_u *)0L, (char_u *)50L} SCRIPTID_INIT}, + {(char_u *)0L, (char_u *)10000L} SCRIPTID_INIT}, {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM, (char_u *)&p_hkmap, PV_NONE, {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT}, -- cgit