mirror of
https://github.com/vim/vim.git
synced 2025-10-04 05:25:06 -04:00
patch 8.0.1323: mouse events in a terminal window may cause endless loop
Problem: Mouse events in a terminal window may cause endless loop. Solution: Adjust position computation. Don't stuff a mouse event when coming from normal_cmd().
This commit is contained in:
@@ -4633,7 +4633,9 @@ nv_mousescroll(cmdarg_T *cap)
|
||||
{
|
||||
# ifdef FEAT_TERMINAL
|
||||
if (term_use_loop())
|
||||
send_keys_to_term(curbuf->b_term, cap->cmdchar, TRUE);
|
||||
/* This window is a terminal window, send the mouse event there.
|
||||
* Set "typed" to FALSE to avoid an endless loop. */
|
||||
send_keys_to_term(curbuf->b_term, cap->cmdchar, FALSE);
|
||||
else
|
||||
# endif
|
||||
if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
|
||||
|
Reference in New Issue
Block a user