]> granicus.if.org Git - vim/commitdiff
patch 7.4.1758 v7.4.1758
authorBram Moolenaar <Bram@vim.org>
Wed, 20 Apr 2016 15:37:41 +0000 (17:37 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 20 Apr 2016 15:37:41 +0000 (17:37 +0200)
Problem:    Triggering CursorHoldI when in CTRL-X mode causes problems.
Solution:   Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to
            feedkeys() (test with that didn't work though).

src/edit.c
src/eval.c
src/version.c

index c813d1f896c2e85ea09e6115b155958fa5151d78..73ed472d7e32eaf3183af1c0ba8f7e8b3545262a 100644 (file)
@@ -1526,7 +1526,12 @@ normalchar:
 
 #ifdef FEAT_AUTOCMD
        /* If typed something may trigger CursorHoldI again. */
-       if (c != K_CURSORHOLD)
+       if (c != K_CURSORHOLD
+# ifdef FEAT_COMPL_FUNC
+           /* but not in CTRL-X mode, a script can't restore the state */
+           && ctrl_x_mode == 0
+# endif
+              )
            did_cursorhold = FALSE;
 #endif
 
index 28cc2f1a79af16082d3b3ad26ebbeb07171babc5..53a651a4d9dcff93142e49fa8290b981ebc7217b 100644 (file)
@@ -11547,6 +11547,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
     char_u     nbuf[NUMBUFLEN];
     int                typed = FALSE;
     int                execute = FALSE;
+    int                dangerous = FALSE;
     char_u     *keys_esc;
 
     /* This is not allowed in the sandbox.  If the commands would still be
@@ -11569,6 +11570,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
                case 't': typed = TRUE; break;
                case 'i': insert = TRUE; break;
                case 'x': execute = TRUE; break;
+               case '!': dangerous = TRUE; break;
            }
        }
     }
@@ -11592,9 +11594,11 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
                /* Avoid a 1 second delay when the keys start Insert mode. */
                msg_scroll = FALSE;
 
-               ++ex_normal_busy;
+               if (!dangerous)
+                   ++ex_normal_busy;
                exec_normal(TRUE);
-               --ex_normal_busy;
+               if (!dangerous)
+                   --ex_normal_busy;
                msg_scroll |= save_msg_scroll;
            }
        }
index 6308789d6990302123d9df87b115aedf4bec06c5..0993f66fc6c90ab324e87ee15772a7fd1e4d91fc 100644 (file)
@@ -748,6 +748,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1758,
 /**/
     1757,
 /**/