summaryrefslogtreecommitdiff
path: root/src/option.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-11 21:29:41 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-11 21:29:41 +0000
commitc270d806f850f29926eb808375a2ce27be5c6dbd (patch)
treea392b6e5a22acda31ca999fa7344e4fe86a60dfd /src/option.c
parent96d2c5b5be2101aa421545fc62373699d1ec8f7f (diff)
downloadvim-git-c270d806f850f29926eb808375a2ce27be5c6dbd.tar.gz
updated for version 7.0221
Diffstat (limited to 'src/option.c')
-rw-r--r--src/option.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option.c b/src/option.c
index e46480667..611f17119 100644
--- a/src/option.c
+++ b/src/option.c
@@ -768,7 +768,7 @@ static struct vimoption
{"completeopt", "cot", P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
#ifdef FEAT_INS_EXPAND
(char_u *)&p_cot, PV_NONE,
- {(char_u *)"menu", (char_u *)0L}
+ {(char_u *)"menu,preview", (char_u *)0L}
#else
(char_u *)NULL, PV_NONE,
{(char_u *)0L, (char_u *)0L}
@@ -2778,7 +2778,7 @@ static char *(p_fdm_values[]) = {"manual", "expr", "marker", "indent", "syntax",
static char *(p_fcl_values[]) = {"all", NULL};
#endif
#ifdef FEAT_INS_EXPAND
-static char *(p_cot_values[]) = {"menu", "menuone", "longest", NULL};
+static char *(p_cot_values[]) = {"menu", "menuone", "longest", "preview", NULL};
#endif
static void set_option_default __ARGS((int, int opt_flags, int compatible));