]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.4848: local completion with mappings and simplification not working v8.2.4848
authorzeertzjq <zeertzjq@outlook.com>
Sat, 30 Apr 2022 14:02:22 +0000 (15:02 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 30 Apr 2022 14:02:22 +0000 (15:02 +0100)
Problem:    Local completion with mappings and simplification not working.
Solution:   Fix local completion <C-N>/<C-P> mappings not ignored if keys are
            not simplified. (closes #10323)

src/getchar.c
src/testdir/test_popup.vim
src/version.c

index 2b1bbde4b0da20701742afd4111535dcf98d857a..2e5dfb3cef3d100bf8f335e81f5dab3413e9d4f9 100644 (file)
@@ -2342,10 +2342,10 @@ typedef enum {
 
 /*
  * Check if the bytes at the start of the typeahead buffer are a character used
- * in CTRL-X mode.  This includes the form with a CTRL modifier.
+ * in Insert mode completion.  This includes the form with a CTRL modifier.
  */
     static int
-at_ctrl_x_key(void)
+at_ins_compl_key(void)
 {
     char_u  *p = typebuf.tb_buf + typebuf.tb_off;
     int            c = *p;
@@ -2355,7 +2355,8 @@ at_ctrl_x_key(void)
            && p[1] == KS_MODIFIER
            && (p[2] & MOD_MASK_CTRL))
        c = p[3] & 0x1f;
-    return vim_is_ctrl_x_key(c);
+    return (ctrl_x_mode_not_default() && vim_is_ctrl_x_key(c))
+               || (compl_status_local() && (c == Ctrl_N || c == Ctrl_P));
 }
 
 /*
@@ -2486,9 +2487,7 @@ handle_mapping(
            && !(State == HITRETURN && (tb_c1 == CAR || tb_c1 == ' '))
            && State != ASKMORE
            && State != CONFIRM
-           && !((ctrl_x_mode_not_default() && at_ctrl_x_key())
-                   || (compl_status_local()
-                       && (tb_c1 == Ctrl_N || tb_c1 == Ctrl_P))))
+           && !at_ins_compl_key())
     {
 #ifdef FEAT_GUI
        if (gui.in_use && tb_c1 == CSI && typebuf.tb_len >= 2
index 5d04583717e89541aae8097ab6c288f5c31a94bb..9832ccf6068863fb13b1890621563ab04dea9a80 100644 (file)
@@ -325,6 +325,21 @@ func Test_compl_vim_cmds_after_register_expr()
   bwipe!
 endfunc
 
+func Test_compl_ignore_mappings()
+  call setline(1, ['foo', 'bar', 'baz', 'foobar'])
+  inoremap <C-P> (C-P)
+  inoremap <C-N> (C-N)
+  normal! G
+  call feedkeys("o\<C-X>\<C-N>\<C-N>\<C-N>\<C-P>\<C-N>\<C-Y>", 'tx')
+  call assert_equal('baz', getline('.'))
+  " Also test with unsimplified keys
+  call feedkeys("o\<C-X>\<*C-N>\<*C-N>\<*C-N>\<*C-P>\<*C-N>\<C-Y>", 'tx')
+  call assert_equal('baz', getline('.'))
+  iunmap <C-P>
+  iunmap <C-N>
+  bwipe!
+endfunc
+
 func DummyCompleteOne(findstart, base)
   if a:findstart
     return 0
index ee5a9ab02672fae41548fbc64ccc77a60634cfb3..d94e2fd96e25e848791c56f9a5932614500556c7 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4848,
 /**/
     4847,
 /**/