mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.1640: the CursorHold autocommand takes down a balloon
Problem: The CursorHold autocommand takes down a balloon. (Paul Jolly) Solution: Ignore the CursorHold pseudo-key.
This commit is contained in:
@@ -1794,7 +1794,7 @@ vgetc(void)
|
||||
may_garbage_collect = FALSE;
|
||||
#endif
|
||||
#ifdef FEAT_BEVAL_TERM
|
||||
if (c != K_MOUSEMOVE && c != K_IGNORE)
|
||||
if (c != K_MOUSEMOVE && c != K_IGNORE && c != K_CURSORHOLD)
|
||||
{
|
||||
/* Don't trigger 'balloonexpr' unless only the mouse was moved. */
|
||||
bevalexpr_due_set = FALSE;
|
||||
|
Reference in New Issue
Block a user