comparison src/option.c @ 13242:5b0faf628a55 v8.0.1495

patch 8.0.1495: having 'pumwidth' default to zero has no merit commit https://github.com/vim/vim/commit/42443c7d7fecc3a2a72154bb6139b028438617c2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 10 18:28:52 2018 +0100 patch 8.0.1495: having 'pumwidth' default to zero has no merit Problem: Having 'pumwidth' default to zero has no merit. Solution: Make the default 15, as the actual default value.
author Christian Brabandt <cb@256bit.org>
date Sat, 10 Feb 2018 18:30:08 +0100
parents 6e972d830e13
children ac42c4b11dbc
comparison
equal deleted inserted replaced
13241:fc8a7fb28903 13242:5b0faf628a55
2243 #ifdef FEAT_INS_EXPAND 2243 #ifdef FEAT_INS_EXPAND
2244 (char_u *)&p_pw, PV_NONE, 2244 (char_u *)&p_pw, PV_NONE,
2245 #else 2245 #else
2246 (char_u *)NULL, PV_NONE, 2246 (char_u *)NULL, PV_NONE,
2247 #endif 2247 #endif
2248 {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT}, 2248 {(char_u *)15L, (char_u *)15L} SCRIPTID_INIT},
2249 {"pythonthreedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, 2249 {"pythonthreedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
2250 #if defined(DYNAMIC_PYTHON3) 2250 #if defined(DYNAMIC_PYTHON3)
2251 (char_u *)&p_py3dll, PV_NONE, 2251 (char_u *)&p_py3dll, PV_NONE,
2252 {(char_u *)DYNAMIC_PYTHON3_DLL, (char_u *)0L} 2252 {(char_u *)DYNAMIC_PYTHON3_DLL, (char_u *)0L}
2253 #else 2253 #else