diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 16:10:29 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-06-21 02:02:00 -0400 |
commit | 896328553061ce2f39d138747ee4b977bbc31298 (patch) | |
tree | 98d6c0fad1d513c6033effaa853add06852a7c5a /src | |
parent | 2c40d117e6a378b506a37c8bb467f95bc7cfa447 (diff) | |
download | rneovim-896328553061ce2f39d138747ee4b977bbc31298.tar.gz rneovim-896328553061ce2f39d138747ee4b977bbc31298.tar.bz2 rneovim-896328553061ce2f39d138747ee4b977bbc31298.zip |
defaults: set 'tabpagemax' to 50 by default. #2869
Re: https://github.com/neovim/neovim/issues/2676
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index b45002e29c..06995eede5 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1472,9 +1472,9 @@ static vimoption_T {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL, (char_u *)&p_tal, PV_NONE, {(char_u *)"", (char_u *)0L} SCRIPTID_INIT}, - {"tabpagemax", "tpm", P_NUM|P_VI_DEF, + {"tabpagemax", "tpm", P_NUM|P_VIM, (char_u *)&p_tpm, PV_NONE, - {(char_u *)10L, (char_u *)0L} SCRIPTID_INIT}, + {(char_u *)10L, (char_u *)50L} SCRIPTID_INIT}, {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF, (char_u *)&p_ts, PV_TS, {(char_u *)8L, (char_u *)0L} SCRIPTID_INIT}, |