diff options
author | Florian Walch <florian@fwalch.com> | 2015-01-04 21:47:59 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-01-04 21:47:59 +0100 |
commit | 099fdb49a700f851f0165089fc2ca06807591f6a (patch) | |
tree | 4d24cedbc101edace37f612afda879f5bbf4a423 /src | |
parent | 2624d66045ab6e5cd1c38165316e9c304f38fa18 (diff) | |
download | rneovim-099fdb49a700f851f0165089fc2ca06807591f6a.tar.gz rneovim-099fdb49a700f851f0165089fc2ca06807591f6a.tar.bz2 rneovim-099fdb49a700f851f0165089fc2ca06807591f6a.zip |
Change 'history' default to 50.
Default as of Vim 7.4.336 (not yet ported). Runtime files already
mention this new default value.
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 1c07bef3e3..00815d60a5 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -887,7 +887,7 @@ static struct vimoption SCRIPTID_INIT}, {"history", "hi", P_NUM|P_VIM, (char_u *)&p_hi, PV_NONE, - {(char_u *)0L, (char_u *)20L} SCRIPTID_INIT}, + {(char_u *)0L, (char_u *)50L} 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}, |