diff 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
line wrap: on
line diff
--- a/src/option.c
+++ b/src/option.c
@@ -2245,7 +2245,7 @@ static struct vimoption options[] =
 #else
 			    (char_u *)NULL, PV_NONE,
 #endif
-			    {(char_u *)0L, (char_u *)0L} SCRIPTID_INIT},
+			    {(char_u *)15L, (char_u *)15L} SCRIPTID_INIT},
     {"pythonthreedll",  NULL,   P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
 #if defined(DYNAMIC_PYTHON3)
 			    (char_u *)&p_py3dll, PV_NONE,