patch 9.1.1161: preinsert requires bot "menu" and "menuone" to be set

Commit: 
https://github.com/vim/vim/commit/94a045ed56d7616c0cd0080d3f308d6cf9fbe64c
Author: glepnir <glephun...@gmail.com>
Date:   Sat Mar 1 16:12:23 2025 +0100

    patch 9.1.1161: preinsert requires bot "menu" and "menuone" to be set
    
    Problem:  preinsert requires bot "menu" and "menuone" to be set,
              but "menu" is redundant (after v9.1.1160)
    Solution: preinsert only requires menuone (glepnir)
    
    closes: #16763
    
    Signed-off-by: glepnir <glephun...@gmail.com>
    Signed-off-by: zeertzjq <zeert...@outlook.com>
    Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 48b4b599a..ccf26ceb5 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 9.1.  Last change: 2025 Feb 28
+*options.txt*  For Vim version 9.1.  Last change: 2025 Mar 01
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2167,9 +2167,8 @@ A jump table for the options with a short description can 
be found at |Q_op|.
           preinsert
                    Preinsert the portion of the first candidate word that is
                    not part of the current completion leader and using the
-                   |hl-ComplMatchIns| highlight group. Does not work when
-                   "fuzzy" is set. Requires both "menu" and "menuone" to be
-                   set.
+                   |hl-ComplMatchIns| highlight group.  In order for it to
+                   work, "fuzzy" must not bet set and "menuone" must be set.
 
           preview  Show extra information about the currently selected
                    completion in the preview window.  Only works in
diff --git a/src/insexpand.c b/src/insexpand.c
index 8a6f8afd8..1616a0f3f 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -1985,15 +1985,15 @@ ins_compl_len(void)
 }
 
 /*
- * Return TRUE when preinsert is set AND both 'menu' and 'menuone' flags
- * are also set, otherwise return FALSE.
+ * Return TRUE when the 'completeopt' "preinsert" flag is in effect,
+ * otherwise return FALSE.
  */
     static int
 ins_compl_has_preinsert(void)
 {
     int cur_cot_flags = get_cot_flags();
-    return (cur_cot_flags & (COT_PREINSERT | COT_FUZZY | COT_MENU | 
COT_MENUONE))
-       == (COT_PREINSERT | COT_MENU | COT_MENUONE);
+    return (cur_cot_flags & (COT_PREINSERT | COT_FUZZY | COT_MENUONE))
+       == (COT_PREINSERT | COT_MENUONE);
 }
 
 /*
diff --git a/src/testdir/test_ins_complete.vim 
b/src/testdir/test_ins_complete.vim
index e91a99e7c..a6859d569 100644
--- a/src/testdir/test_ins_complete.vim
+++ b/src/testdir/test_ins_complete.vim
@@ -3223,6 +3223,11 @@ function Test_completeopt_preinsert()
   call assert_equal("foo1bar", getline('.'))
   call assert_equal(7, col('.'))
 
+  set cot=preinsert,menuone
+  call feedkeys("Sfoo1 foo2\<CR>f\<C-X>\<C-N>", 'tx')
+  call assert_equal("foo1", getline('.'))
+  call assert_equal(1, col('.'))
+
   bw!
   set cot&
   set omnifunc&
diff --git a/src/version.c b/src/version.c
index 12d4434ec..398d72509 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1161,
 /**/
     1160,
 /**/

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion visit 
https://groups.google.com/d/msgid/vim_dev/E1toOn2-002c1M-Ui%40256bit.org.

Raspunde prin e-mail lui