From 896328553061ce2f39d138747ee4b977bbc31298 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Sat, 20 Jun 2015 16:10:29 -0300 Subject: defaults: set 'tabpagemax' to 50 by default. #2869 Re: https://github.com/neovim/neovim/issues/2676 --- src/nvim/option.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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}, -- cgit