diff src/insexpand.c @ 32080:fc1d95479511 v9.0.1371

patch 9.0.1371: ballooneval interferes with Insert completion Commit: https://github.com/vim/vim/commit/440d4cb55b84fd4b188630abc4a1312598649af0 Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Mar 2 17:51:32 2023 +0000 patch 9.0.1371: ballooneval interferes with Insert completion Problem: Ballooneval interferes with Insert completion. Solution: Ignore mouse-move events when completing. (closes https://github.com/vim/vim/issues/12094, closes #12092)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Mar 2023 19:00:05 +0100
parents 4545f58c8490
children bea4ebf594c6
line wrap: on
line diff
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -2333,9 +2333,9 @@ ins_compl_prep(int c)
     if (c != Ctrl_R && vim_is_ctrl_x_key(c))
 	edit_submode_extra = NULL;
 
-    // Ignore end of Select mode mapping and mouse scroll buttons.
+    // Ignore end of Select mode mapping and mouse scroll/movement.
     if (c == K_SELECT || c == K_MOUSEDOWN || c == K_MOUSEUP
-	    || c == K_MOUSELEFT || c == K_MOUSERIGHT
+	    || c == K_MOUSELEFT || c == K_MOUSERIGHT || c == K_MOUSEMOVE
 	    || c == K_COMMAND || c == K_SCRIPT_COMMAND)
 	return retval;
 
@@ -3491,7 +3491,7 @@ get_next_spell_completion(linenr_T lnum 
  * "cur_match_pos" for completion.  The length of the match is set in "len".
  */
     static char_u *
-ins_comp_get_next_word_or_line(
+ins_compl_get_next_word_or_line(
 	buf_T	*ins_buf,		// buffer being scanned
 	pos_T	*cur_match_pos,		// current match position
 	int	*match_len,
@@ -3675,8 +3675,8 @@ get_next_default_completion(ins_compl_ne
 		&& start_pos->col  == st->cur_match_pos->col)
 	    continue;
 
-	ptr = ins_comp_get_next_word_or_line(st->ins_buf, st->cur_match_pos,
-							&len, &cont_s_ipos);
+	ptr = ins_compl_get_next_word_or_line(st->ins_buf, st->cur_match_pos,
+							   &len, &cont_s_ipos);
 	if (ptr == NULL)
 	    continue;