}
#endif
+static int mouse_got_click = FALSE; // got a click some time back
+
+/*
+ * Reset the flag that a mouse click was seen. To be called when switching tab
+ * page.
+ */
+ void
+reset_mouse_got_click(void)
+{
+ mouse_got_click = FALSE;
+}
+
/*
* Do the appropriate action for the current mouse click in the current mode.
* Not used for Command-line mode.
int fixindent) // PUT_FIXINDENT if fixing indent necessary
{
static int do_always = FALSE; // ignore 'mouse' setting next time
- static int got_click = FALSE; // got a click some time back
int which_button; // MOUSE_LEFT, _MIDDLE or _RIGHT
int is_click = FALSE; // If FALSE it's a drag or release event
// Ignore drag and release events if we didn't get a click.
if (is_click)
- got_click = TRUE;
+ mouse_got_click = TRUE;
else
{
- if (!got_click) // didn't get click, ignore
+ if (!mouse_got_click) // didn't get click, ignore
return FALSE;
- if (!is_drag) // release, reset got_click
+ if (!is_drag) // release, reset mouse_got_click
{
- got_click = FALSE;
+ mouse_got_click = FALSE;
if (in_tab_line)
{
in_tab_line = FALSE;
if (count > 1)
stuffnumReadbuff(count);
stuffcharReadbuff(Ctrl_T);
- got_click = FALSE; // ignore drag&release now
+ mouse_got_click = FALSE; // ignore drag&release now
return FALSE;
}
}
# ifdef FEAT_MENU
show_popupmenu();
- got_click = FALSE; // ignore release events
+ mouse_got_click = FALSE; // ignore release events
# endif
return (jump_flags & CURSOR_MOVED) != 0;
#else
// next mouse click.
if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
{
- got_click = FALSE;
+ mouse_got_click = FALSE;
oap->motion_type = MCHAR;
}
do_cmdline_cmd((char_u *)".cc");
else // location list window
do_cmdline_cmd((char_u *)".ll");
- got_click = FALSE; // ignore drag&release now
+ mouse_got_click = FALSE; // ignore drag&release now
}
#endif
if (State & MODE_INSERT)
stuffcharReadbuff(Ctrl_O);
stuffcharReadbuff(Ctrl_RSB);
- got_click = FALSE; // ignore drag&release now
+ mouse_got_click = FALSE; // ignore drag&release now
}
// Shift-Mouse click searches for the next occurrence of the word under
set mouse&
endfunc
+func Test_mouse_drag_statusline()
+ set laststatus=2
+ set mouse=a
+ func ClickExpr()
+ call test_setmouse(&lines - 1, 1)
+ return "\<LeftMouse>"
+ endfunc
+ func DragExpr()
+ call test_setmouse(&lines - 2, 1)
+ return "\<LeftDrag>"
+ endfunc
+ nnoremap <expr> <F2> ClickExpr()
+ nnoremap <expr> <F3> DragExpr()
+
+ " this was causing a crash in win_drag_status_line()
+ call feedkeys("\<F2>:tabnew\<CR>\<F3>", 'tx')
+endfunc
+
" Test for mapping <LeftDrag> in Insert mode
func Test_mouse_drag_insert_map()
set mouse=a