summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-03 22:56:30 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-03 22:56:30 +0000
commit65c923adf3589b6c237ac357fcc069085c658a02 (patch)
tree8c379ffd9462f1be67f06f9a9b3712570d219c2e /src/edit.c
parentbfb2d40b6ec0b8fff51bc6fadabf4aaeb383beb8 (diff)
updated for version 7.0213
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/edit.c b/src/edit.c
index 98d287abf1..5809df1bbf 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -129,7 +129,7 @@ static int ins_compl_make_cyclic __ARGS((void));
static void ins_compl_upd_pum __ARGS((void));
static void ins_compl_del_pum __ARGS((void));
static int pum_wanted __ARGS((void));
-static int pum_two_or_more __ARGS((void));
+static int pum_enough_matches __ARGS((void));
static void ins_compl_dictionaries __ARGS((char_u *dict, char_u *pat, int flags, int thesaurus));
static void ins_compl_files __ARGS((int count, char_u **files, int thesaurus, int flags, regmatch_T *regmatch, char_u *buf, int *dir));
static char_u *find_line_end __ARGS((char_u *ptr));
@@ -2347,7 +2347,7 @@ ins_compl_del_pum()
static int
pum_wanted()
{
- /* 'completeopt' must contain "menu" */
+ /* 'completeopt' must contain "menu" or "menuone" */
if (vim_strchr(p_cot, 'm') == NULL)
return FALSE;
@@ -2363,9 +2363,10 @@ pum_wanted()
/*
* Return TRUE if there are two or more matches to be shown in the popup menu.
+ * One if 'completopt' contains "menuone".
*/
static int
-pum_two_or_more()
+pum_enough_matches()
{
compl_T *compl;
int i;
@@ -2382,6 +2383,8 @@ pum_two_or_more()
compl = compl->cp_next;
} while (compl != compl_first_match);
+ if (strstr((char *)p_cot, "menuone") != NULL)
+ return (i >= 1);
return (i >= 2);
}
@@ -2401,7 +2404,7 @@ ins_compl_show_pum()
colnr_T col;
int lead_len = 0;
- if (!pum_wanted() || !pum_two_or_more())
+ if (!pum_wanted() || !pum_enough_matches())
return;
/* Update the screen before drawing the popup menu over it. */