diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 15:59:25 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-07-20 03:48:33 -0400 |
commit | b4a5871809d14c9c0faa87a7a80cee8dcccff749 (patch) | |
tree | 046b70bb1ae928e1b7dac40e5d86afcdf07fd33a /src | |
parent | 259db27aefba280a9c154017b8e852c6d70abdfc (diff) | |
download | rneovim-b4a5871809d14c9c0faa87a7a80cee8dcccff749.tar.gz rneovim-b4a5871809d14c9c0faa87a7a80cee8dcccff749.tar.bz2 rneovim-b4a5871809d14c9c0faa87a7a80cee8dcccff749.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
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}, |