blob: 88a92462b2144618ed4e35726ff95b4f9605ceaf [file] [log] [blame]
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001/* vi:set ts=8 sts=4 sw=4 noet:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * mouse.c: mouse handling functions
12 */
13
14#include "vim.h"
15
LemonBoyc27747e2022-05-07 12:25:40 +010016/*
17 * Horiziontal and vertical steps used when scrolling.
18 * When negative scroll by a whole page.
19 */
20static long mouse_hor_step = 6;
21static long mouse_vert_step = 3;
22
23 void
24mouse_set_vert_scroll_step(long step)
25{
26 mouse_vert_step = step;
27}
28
29 void
30mouse_set_hor_scroll_step(long step)
31{
32 mouse_hor_step = step;
33}
34
Bram Moolenaar85c35022019-11-22 22:21:59 +010035#ifdef CHECK_DOUBLE_CLICK
36/*
37 * Return the duration from t1 to t2 in milliseconds.
38 */
39 static long
40time_diff_ms(struct timeval *t1, struct timeval *t2)
41{
42 // This handles wrapping of tv_usec correctly without any special case.
43 // Example of 2 pairs (tv_sec, tv_usec) with a duration of 5 ms:
44 // t1 = (1, 998000) t2 = (2, 3000) gives:
45 // (2 - 1) * 1000 + (3000 - 998000) / 1000 -> 5 ms.
46 return (t2->tv_sec - t1->tv_sec) * 1000
47 + (t2->tv_usec - t1->tv_usec) / 1000;
48}
49#endif
50
Bram Moolenaarb20b9e12019-09-21 20:48:04 +020051/*
52 * Get class of a character for selection: same class means same word.
53 * 0: blank
54 * 1: punctuation groups
55 * 2: normal word character
56 * >2: multi-byte word character.
57 */
58 static int
59get_mouse_class(char_u *p)
60{
61 int c;
62
63 if (has_mbyte && MB_BYTE2LEN(p[0]) > 1)
64 return mb_get_class(p);
65
66 c = *p;
67 if (c == ' ' || c == '\t')
68 return 0;
69
70 if (vim_iswordc(c))
71 return 2;
72
73 // There are a few special cases where we want certain combinations of
74 // characters to be considered as a single word. These are things like
75 // "->", "/ *", "*=", "+=", "&=", "<=", ">=", "!=" etc. Otherwise, each
76 // character is in its own class.
77 if (c != NUL && vim_strchr((char_u *)"-+*/%<>&|^!=", c) != NULL)
78 return 1;
79 return c;
80}
81
82/*
83 * Move "pos" back to the start of the word it's in.
84 */
85 static void
86find_start_of_word(pos_T *pos)
87{
88 char_u *line;
89 int cclass;
90 int col;
91
92 line = ml_get(pos->lnum);
93 cclass = get_mouse_class(line + pos->col);
94
95 while (pos->col > 0)
96 {
97 col = pos->col - 1;
98 col -= (*mb_head_off)(line, line + col);
99 if (get_mouse_class(line + col) != cclass)
100 break;
101 pos->col = col;
102 }
103}
104
105/*
106 * Move "pos" forward to the end of the word it's in.
107 * When 'selection' is "exclusive", the position is just after the word.
108 */
109 static void
110find_end_of_word(pos_T *pos)
111{
112 char_u *line;
113 int cclass;
114 int col;
115
116 line = ml_get(pos->lnum);
117 if (*p_sel == 'e' && pos->col > 0)
118 {
119 --pos->col;
120 pos->col -= (*mb_head_off)(line, line + pos->col);
121 }
122 cclass = get_mouse_class(line + pos->col);
123 while (line[pos->col] != NUL)
124 {
125 col = pos->col + (*mb_ptr2len)(line + pos->col);
126 if (get_mouse_class(line + col) != cclass)
127 {
128 if (*p_sel == 'e')
129 pos->col = col;
130 break;
131 }
132 pos->col = col;
133 }
134}
135
Bram Moolenaar910c3782019-09-22 14:11:50 +0200136#if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100137 || defined(FEAT_GUI_MSWIN) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200138 || defined(FEAT_GUI_PHOTON) \
Bram Moolenaar910c3782019-09-22 14:11:50 +0200139 || defined(FEAT_TERM_POPUP_MENU)
140# define USE_POPUP_SETPOS
141# define NEED_VCOL2COL
142
143/*
Yee Cheng Chin17822c52022-10-13 13:17:40 +0100144 * Translate window coordinates to buffer position without any side effects.
145 * Returns IN_BUFFER and sets "mpos->col" to the column when in buffer text.
146 * The column is one for the first column.
Bram Moolenaar910c3782019-09-22 14:11:50 +0200147 */
148 static int
149get_fpos_of_mouse(pos_T *mpos)
150{
151 win_T *wp;
152 int row = mouse_row;
153 int col = mouse_col;
154
155 if (row < 0 || col < 0) // check if it makes sense
156 return IN_UNKNOWN;
157
158 // find the window where the row is in
159 wp = mouse_find_win(&row, &col, FAIL_POPUP);
160 if (wp == NULL)
161 return IN_UNKNOWN;
162 // winpos and height may change in win_enter()!
163 if (row >= wp->w_height) // In (or below) status line
164 return IN_STATUS_LINE;
165 if (col >= wp->w_width) // In vertical separator line
166 return IN_SEP_LINE;
167
168 if (wp != curwin)
169 return IN_UNKNOWN;
170
171 // compute the position in the buffer line from the posn on the screen
172 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL))
173 return IN_STATUS_LINE; // past bottom
174
175 mpos->col = vcol2col(wp, mpos->lnum, col);
176
Bram Moolenaar910c3782019-09-22 14:11:50 +0200177 mpos->coladd = 0;
178 return IN_BUFFER;
179}
180#endif
181
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200182/*
183 * Do the appropriate action for the current mouse click in the current mode.
184 * Not used for Command-line mode.
185 *
186 * Normal and Visual Mode:
187 * event modi- position visual change action
188 * fier cursor window
189 * left press - yes end yes
190 * left press C yes end yes "^]" (2)
191 * left press S yes end (popup: extend) yes "*" (2)
192 * left drag - yes start if moved no
193 * left relse - yes start if moved no
194 * middle press - yes if not active no put register
195 * middle press - yes if active no yank and put
196 * right press - yes start or extend yes
197 * right press S yes no change yes "#" (2)
198 * right drag - yes extend no
199 * right relse - yes extend no
200 *
201 * Insert or Replace Mode:
202 * event modi- position visual change action
203 * fier cursor window
204 * left press - yes (cannot be active) yes
205 * left press C yes (cannot be active) yes "CTRL-O^]" (2)
206 * left press S yes (cannot be active) yes "CTRL-O*" (2)
207 * left drag - yes start or extend (1) no CTRL-O (1)
208 * left relse - yes start or extend (1) no CTRL-O (1)
209 * middle press - no (cannot be active) no put register
210 * right press - yes start or extend yes CTRL-O
211 * right press S yes (cannot be active) yes "CTRL-O#" (2)
212 *
213 * (1) only if mouse pointer moved since press
214 * (2) only if click is in same buffer
215 *
216 * Return TRUE if start_arrow() should be called for edit mode.
217 */
218 int
219do_mouse(
220 oparg_T *oap, // operator argument, can be NULL
221 int c, // K_LEFTMOUSE, etc
222 int dir, // Direction to 'put' if necessary
223 long count,
224 int fixindent) // PUT_FIXINDENT if fixing indent necessary
225{
226 static int do_always = FALSE; // ignore 'mouse' setting next time
zeertzjq8e0ccb62022-11-01 18:35:27 +0000227 static int got_click = FALSE; // got a click some time back
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200228
229 int which_button; // MOUSE_LEFT, _MIDDLE or _RIGHT
230 int is_click = FALSE; // If FALSE it's a drag or release event
231 int is_drag = FALSE; // If TRUE it's a drag event
232 int jump_flags = 0; // flags for jump_to_mouse()
233 pos_T start_visual;
234 int moved; // Has cursor moved?
235 int in_status_line; // mouse in status line
236 static int in_tab_line = FALSE; // mouse clicked in tab line
237 int in_sep_line; // mouse in vertical separator line
238 int c1, c2;
239#if defined(FEAT_FOLDING)
240 pos_T save_cursor;
241#endif
242 win_T *old_curwin = curwin;
243 static pos_T orig_cursor;
244 colnr_T leftcol, rightcol;
245 pos_T end_visual;
246 int diff;
247 int old_active = VIsual_active;
248 int old_mode = VIsual_mode;
249 int regname;
250
251#if defined(FEAT_FOLDING)
252 save_cursor = curwin->w_cursor;
253#endif
254
255 // When GUI is active, always recognize mouse events, otherwise:
256 // - Ignore mouse event in normal mode if 'mouse' doesn't include 'n'.
257 // - Ignore mouse event in visual mode if 'mouse' doesn't include 'v'.
258 // - For command line and insert mode 'mouse' is checked before calling
259 // do_mouse().
260 if (do_always)
261 do_always = FALSE;
262 else
263#ifdef FEAT_GUI
264 if (!gui.in_use)
265#endif
266 {
267 if (VIsual_active)
268 {
269 if (!mouse_has(MOUSE_VISUAL))
270 return FALSE;
271 }
Bram Moolenaar24959102022-05-07 20:01:16 +0100272 else if (State == MODE_NORMAL && !mouse_has(MOUSE_NORMAL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200273 return FALSE;
274 }
275
276 for (;;)
277 {
278 which_button = get_mouse_button(KEY2TERMCAP1(c), &is_click, &is_drag);
279 if (is_drag)
280 {
281 // If the next character is the same mouse event then use that
282 // one. Speeds up dragging the status line.
zeertzjq0f68e6c2022-04-05 13:17:01 +0100283 // Note: Since characters added to the stuff buffer in the code
284 // below need to come before the next character, do not do this
285 // when the current character was stuffed.
286 if (!KeyStuffed && vpeekc() != NUL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200287 {
288 int nc;
289 int save_mouse_row = mouse_row;
290 int save_mouse_col = mouse_col;
291
292 // Need to get the character, peeking doesn't get the actual
293 // one.
294 nc = safe_vgetc();
295 if (c == nc)
296 continue;
297 vungetc(nc);
298 mouse_row = save_mouse_row;
299 mouse_col = save_mouse_col;
300 }
301 }
302 break;
303 }
304
305 if (c == K_MOUSEMOVE)
306 {
307 // Mouse moved without a button pressed.
308#ifdef FEAT_BEVAL_TERM
309 ui_may_remove_balloon();
310 if (p_bevalterm)
311 {
312 profile_setlimit(p_bdlay, &bevalexpr_due);
313 bevalexpr_due_set = TRUE;
314 }
315#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100316#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200317 popup_handle_mouse_moved();
318#endif
319 return FALSE;
320 }
321
322#ifdef FEAT_MOUSESHAPE
323 // May have stopped dragging the status or separator line. The pointer is
324 // most likely still on the status or separator line.
325 if (!is_drag && drag_status_line)
326 {
327 drag_status_line = FALSE;
328 update_mouseshape(SHAPE_IDX_STATUS);
329 }
330 if (!is_drag && drag_sep_line)
331 {
332 drag_sep_line = FALSE;
333 update_mouseshape(SHAPE_IDX_VSEP);
334 }
335#endif
336
337 // Ignore drag and release events if we didn't get a click.
338 if (is_click)
zeertzjq8e0ccb62022-11-01 18:35:27 +0000339 got_click = TRUE;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200340 else
341 {
zeertzjq8e0ccb62022-11-01 18:35:27 +0000342 if (!got_click) // didn't get click, ignore
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200343 return FALSE;
zeertzjq8e0ccb62022-11-01 18:35:27 +0000344 if (!is_drag) // release, reset got_click
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200345 {
zeertzjq8e0ccb62022-11-01 18:35:27 +0000346 got_click = FALSE;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200347 if (in_tab_line)
348 {
349 in_tab_line = FALSE;
350 return FALSE;
351 }
352 }
353 }
354
355 // CTRL right mouse button does CTRL-T
356 if (is_click && (mod_mask & MOD_MASK_CTRL) && which_button == MOUSE_RIGHT)
357 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100358 if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200359 stuffcharReadbuff(Ctrl_O);
360 if (count > 1)
361 stuffnumReadbuff(count);
362 stuffcharReadbuff(Ctrl_T);
zeertzjq8e0ccb62022-11-01 18:35:27 +0000363 got_click = FALSE; // ignore drag&release now
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200364 return FALSE;
365 }
366
367 // CTRL only works with left mouse button
368 if ((mod_mask & MOD_MASK_CTRL) && which_button != MOUSE_LEFT)
369 return FALSE;
370
371 // When a modifier is down, ignore drag and release events, as well as
372 // multiple clicks and the middle mouse button.
373 // Accept shift-leftmouse drags when 'mousemodel' is "popup.*".
374 if ((mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT
375 | MOD_MASK_META))
376 && (!is_click
377 || (mod_mask & MOD_MASK_MULTI_CLICK)
378 || which_button == MOUSE_MIDDLE)
379 && !((mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT))
380 && mouse_model_popup()
381 && which_button == MOUSE_LEFT)
382 && !((mod_mask & MOD_MASK_ALT)
383 && !mouse_model_popup()
384 && which_button == MOUSE_RIGHT)
385 )
386 return FALSE;
387
388 // If the button press was used as the movement command for an operator
389 // (eg "d<MOUSE>"), or it is the middle button that is held down, ignore
390 // drag/release events.
391 if (!is_click && which_button == MOUSE_MIDDLE)
392 return FALSE;
393
394 if (oap != NULL)
395 regname = oap->regname;
396 else
397 regname = 0;
398
399 // Middle mouse button does a 'put' of the selected text
400 if (which_button == MOUSE_MIDDLE)
401 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100402 if (State == MODE_NORMAL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200403 {
404 // If an operator was pending, we don't know what the user wanted
405 // to do. Go back to normal mode: Clear the operator and beep().
406 if (oap != NULL && oap->op_type != OP_NOP)
407 {
408 clearopbeep(oap);
409 return FALSE;
410 }
411
412 // If visual was active, yank the highlighted text and put it
413 // before the mouse pointer position.
414 // In Select mode replace the highlighted text with the clipboard.
415 if (VIsual_active)
416 {
417 if (VIsual_select)
418 {
419 stuffcharReadbuff(Ctrl_G);
420 stuffReadbuff((char_u *)"\"+p");
421 }
422 else
423 {
424 stuffcharReadbuff('y');
425 stuffcharReadbuff(K_MIDDLEMOUSE);
426 }
427 do_always = TRUE; // ignore 'mouse' setting next time
428 return FALSE;
429 }
430 // The rest is below jump_to_mouse()
431 }
432
Bram Moolenaar24959102022-05-07 20:01:16 +0100433 else if ((State & MODE_INSERT) == 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200434 return FALSE;
435
436 // Middle click in insert mode doesn't move the mouse, just insert the
437 // contents of a register. '.' register is special, can't insert that
438 // with do_put().
439 // Also paste at the cursor if the current mode isn't in 'mouse' (only
440 // happens for the GUI).
Bram Moolenaar24959102022-05-07 20:01:16 +0100441 if ((State & MODE_INSERT) || !mouse_has(MOUSE_NORMAL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200442 {
443 if (regname == '.')
444 insert_reg(regname, TRUE);
445 else
446 {
447#ifdef FEAT_CLIPBOARD
448 if (clip_star.available && regname == 0)
449 regname = '*';
450#endif
451 if ((State & REPLACE_FLAG) && !yank_register_mline(regname))
452 insert_reg(regname, TRUE);
453 else
454 {
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200455 do_put(regname, NULL, BACKWARD, 1L,
456 fixindent | PUT_CURSEND);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200457
458 // Repeat it with CTRL-R CTRL-O r or CTRL-R CTRL-P r
459 AppendCharToRedobuff(Ctrl_R);
460 AppendCharToRedobuff(fixindent ? Ctrl_P : Ctrl_O);
461 AppendCharToRedobuff(regname == 0 ? '"' : regname);
462 }
463 }
464 return FALSE;
465 }
466 }
467
468 // When dragging or button-up stay in the same window.
469 if (!is_click)
470 jump_flags |= MOUSE_FOCUS | MOUSE_DID_MOVE;
471
472 start_visual.lnum = 0;
473
Bram Moolenaar80525752022-08-24 19:27:45 +0100474 if (TabPageIdxs != NULL) // only when initialized
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200475 {
Bram Moolenaar80525752022-08-24 19:27:45 +0100476 // Check for clicking in the tab page line.
477 if (mouse_row == 0 && firstwin->w_winrow > 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200478 {
Bram Moolenaar80525752022-08-24 19:27:45 +0100479 if (is_drag)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200480 {
Bram Moolenaar80525752022-08-24 19:27:45 +0100481 if (in_tab_line)
482 {
483 c1 = TabPageIdxs[mouse_col];
484 tabpage_move(c1 <= 0 ? 9999 : c1 < tabpage_index(curtab)
Martin Tournoij7904fa42022-10-04 16:28:45 +0100485 ? c1 - 1 : c1);
Bram Moolenaar80525752022-08-24 19:27:45 +0100486 }
487 return FALSE;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200488 }
Bram Moolenaar80525752022-08-24 19:27:45 +0100489
490 // click in a tab selects that tab page
Martin Tournoij7904fa42022-10-04 16:28:45 +0100491 if (is_click && cmdwin_type == 0 && mouse_col < Columns)
Bram Moolenaar80525752022-08-24 19:27:45 +0100492 {
493 in_tab_line = TRUE;
494 c1 = TabPageIdxs[mouse_col];
495 if (c1 >= 0)
496 {
497 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
498 {
499 // double click opens new page
500 end_visual_mode_keep_button();
501 tabpage_new();
502 tabpage_move(c1 == 0 ? 9999 : c1 - 1);
503 }
504 else
505 {
506 // Go to specified tab page, or next one if not clicking
507 // on a label.
508 goto_tabpage(c1);
509
510 // It's like clicking on the status line of a window.
511 if (curwin != old_curwin)
512 end_visual_mode_keep_button();
513 }
514 }
515 else
516 {
517 tabpage_T *tp;
518
519 // Close the current or specified tab page.
520 if (c1 == -999)
521 tp = curtab;
522 else
523 tp = find_tabpage(-c1);
524 if (tp == curtab)
525 {
526 if (first_tabpage->tp_next != NULL)
527 tabpage_close(FALSE);
528 }
529 else if (tp != NULL)
530 tabpage_close_other(tp, FALSE);
531 }
532 }
533 return TRUE;
534 }
535 else if (is_drag && in_tab_line)
536 {
537 c1 = TabPageIdxs[mouse_col];
538 tabpage_move(c1 <= 0 ? 9999 : c1 - 1);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200539 return FALSE;
540 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200541 }
542
543 // When 'mousemodel' is "popup" or "popup_setpos", translate mouse events:
544 // right button up -> pop-up menu
545 // shift-left button -> right button
546 // alt-left button -> alt-right button
547 if (mouse_model_popup())
548 {
549 if (which_button == MOUSE_RIGHT
550 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
551 {
Bram Moolenaar910c3782019-09-22 14:11:50 +0200552#ifdef USE_POPUP_SETPOS
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200553# ifdef FEAT_GUI
554 if (gui.in_use)
555 {
556# if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_GTK) \
Bram Moolenaar097148e2020-08-11 21:58:20 +0200557 || defined(FEAT_GUI_PHOTON)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200558 if (!is_click)
559 // Ignore right button release events, only shows the popup
560 // menu on the button down event.
561 return FALSE;
562# endif
Bram Moolenaar0b962e52022-04-03 18:02:37 +0100563# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200564 if (is_click || is_drag)
565 // Ignore right button down and drag mouse events. Windows
566 // only shows the popup menu on the button up event.
567 return FALSE;
568# endif
569 }
570# endif
571# if defined(FEAT_GUI) && defined(FEAT_TERM_POPUP_MENU)
572 else
573# endif
574# if defined(FEAT_TERM_POPUP_MENU)
575 if (!is_click)
576 // Ignore right button release events, only shows the popup
577 // menu on the button down event.
578 return FALSE;
Christopher Plewright696d0a82022-11-18 17:53:34 +0000579# endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200580
581 jump_flags = 0;
582 if (STRCMP(p_mousem, "popup_setpos") == 0)
583 {
584 // First set the cursor position before showing the popup
585 // menu.
586 if (VIsual_active)
587 {
588 pos_T m_pos;
589
590 // set MOUSE_MAY_STOP_VIS if we are outside the
591 // selection or the current window (might have false
592 // negative here)
593 if (mouse_row < curwin->w_winrow
594 || mouse_row
595 > (curwin->w_winrow + curwin->w_height))
596 jump_flags = MOUSE_MAY_STOP_VIS;
597 else if (get_fpos_of_mouse(&m_pos) != IN_BUFFER)
598 jump_flags = MOUSE_MAY_STOP_VIS;
599 else
600 {
Yee Cheng Chin17822c52022-10-13 13:17:40 +0100601 if (VIsual_mode == 'V')
602 {
603 if ((curwin->w_cursor.lnum <= VIsual.lnum
604 && (m_pos.lnum < curwin->w_cursor.lnum
605 || VIsual.lnum < m_pos.lnum))
606 || (VIsual.lnum < curwin->w_cursor.lnum
607 && (m_pos.lnum < VIsual.lnum
608 || curwin->w_cursor.lnum < m_pos.lnum)))
609 {
610 jump_flags = MOUSE_MAY_STOP_VIS;
611 }
612 }
613 else if ((LTOREQ_POS(curwin->w_cursor, VIsual)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200614 && (LT_POS(m_pos, curwin->w_cursor)
615 || LT_POS(VIsual, m_pos)))
616 || (LT_POS(VIsual, curwin->w_cursor)
617 && (LT_POS(m_pos, VIsual)
618 || LT_POS(curwin->w_cursor, m_pos))))
619 {
620 jump_flags = MOUSE_MAY_STOP_VIS;
621 }
622 else if (VIsual_mode == Ctrl_V)
623 {
624 getvcols(curwin, &curwin->w_cursor, &VIsual,
625 &leftcol, &rightcol);
626 getvcol(curwin, &m_pos, NULL, &m_pos.col, NULL);
627 if (m_pos.col < leftcol || m_pos.col > rightcol)
628 jump_flags = MOUSE_MAY_STOP_VIS;
629 }
630 }
631 }
632 else
633 jump_flags = MOUSE_MAY_STOP_VIS;
634 }
635 if (jump_flags)
636 {
637 jump_flags = jump_to_mouse(jump_flags, NULL, which_button);
Bram Moolenaara4d158b2022-08-14 14:17:45 +0100638 update_curbuf(VIsual_active ? UPD_INVERTED : UPD_VALID);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200639 setcursor();
640 out_flush(); // Update before showing popup menu
641 }
642# ifdef FEAT_MENU
643 show_popupmenu();
zeertzjq8e0ccb62022-11-01 18:35:27 +0000644 got_click = FALSE; // ignore release events
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200645# endif
646 return (jump_flags & CURSOR_MOVED) != 0;
647#else
648 return FALSE;
649#endif
650 }
651 if (which_button == MOUSE_LEFT
652 && (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_ALT)))
653 {
654 which_button = MOUSE_RIGHT;
655 mod_mask &= ~MOD_MASK_SHIFT;
656 }
657 }
658
Bram Moolenaar24959102022-05-07 20:01:16 +0100659 if ((State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200660 && !(mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL)))
661 {
662 if (which_button == MOUSE_LEFT)
663 {
664 if (is_click)
665 {
666 // stop Visual mode for a left click in a window, but not when
667 // on a status line
668 if (VIsual_active)
669 jump_flags |= MOUSE_MAY_STOP_VIS;
670 }
671 else if (mouse_has(MOUSE_VISUAL))
672 jump_flags |= MOUSE_MAY_VIS;
673 }
674 else if (which_button == MOUSE_RIGHT)
675 {
676 if (is_click && VIsual_active)
677 {
678 // Remember the start and end of visual before moving the
679 // cursor.
680 if (LT_POS(curwin->w_cursor, VIsual))
681 {
682 start_visual = curwin->w_cursor;
683 end_visual = VIsual;
684 }
685 else
686 {
687 start_visual = VIsual;
688 end_visual = curwin->w_cursor;
689 }
690 }
691 jump_flags |= MOUSE_FOCUS;
692 if (mouse_has(MOUSE_VISUAL))
693 jump_flags |= MOUSE_MAY_VIS;
694 }
695 }
696
697 // If an operator is pending, ignore all drags and releases until the
698 // next mouse click.
699 if (!is_drag && oap != NULL && oap->op_type != OP_NOP)
700 {
zeertzjq8e0ccb62022-11-01 18:35:27 +0000701 got_click = FALSE;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200702 oap->motion_type = MCHAR;
703 }
704
705 // When releasing the button let jump_to_mouse() know.
706 if (!is_click && !is_drag)
707 jump_flags |= MOUSE_RELEASED;
708
709 // JUMP!
710 jump_flags = jump_to_mouse(jump_flags,
711 oap == NULL ? NULL : &(oap->inclusive), which_button);
712
713#ifdef FEAT_MENU
714 // A click in the window toolbar has no side effects.
715 if (jump_flags & MOUSE_WINBAR)
716 return FALSE;
717#endif
718 moved = (jump_flags & CURSOR_MOVED);
719 in_status_line = (jump_flags & IN_STATUS_LINE);
720 in_sep_line = (jump_flags & IN_SEP_LINE);
721
722#ifdef FEAT_NETBEANS_INTG
723 if (isNetbeansBuffer(curbuf)
724 && !(jump_flags & (IN_STATUS_LINE | IN_SEP_LINE)))
725 {
726 int key = KEY2TERMCAP1(c);
727
728 if (key == (int)KE_LEFTRELEASE || key == (int)KE_MIDDLERELEASE
729 || key == (int)KE_RIGHTRELEASE)
730 netbeans_button_release(which_button);
731 }
732#endif
733
734 // When jumping to another window, clear a pending operator. That's a bit
735 // friendlier than beeping and not jumping to that window.
736 if (curwin != old_curwin && oap != NULL && oap->op_type != OP_NOP)
737 clearop(oap);
738
739#ifdef FEAT_FOLDING
740 if (mod_mask == 0
741 && !is_drag
742 && (jump_flags & (MOUSE_FOLD_CLOSE | MOUSE_FOLD_OPEN))
743 && which_button == MOUSE_LEFT)
744 {
745 // open or close a fold at this line
746 if (jump_flags & MOUSE_FOLD_OPEN)
747 openFold(curwin->w_cursor.lnum, 1L);
748 else
749 closeFold(curwin->w_cursor.lnum, 1L);
750 // don't move the cursor if still in the same window
751 if (curwin == old_curwin)
752 curwin->w_cursor = save_cursor;
753 }
754#endif
755
Martin Tournoij7904fa42022-10-04 16:28:45 +0100756#if defined(FEAT_CLIPBOARD)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200757 if ((jump_flags & IN_OTHER_WIN) && !VIsual_active && clip_star.available)
758 {
759 clip_modeless(which_button, is_click, is_drag);
760 return FALSE;
761 }
762#endif
763
764 // Set global flag that we are extending the Visual area with mouse
765 // dragging; temporarily minimize 'scrolloff'.
766 if (VIsual_active && is_drag && get_scrolloff_value())
767 {
768 // In the very first line, allow scrolling one line
769 if (mouse_row == 0)
770 mouse_dragging = 2;
771 else
772 mouse_dragging = 1;
773 }
774
775 // When dragging the mouse above the window, scroll down.
776 if (is_drag && mouse_row < 0 && !in_status_line)
777 {
778 scroll_redraw(FALSE, 1L);
779 mouse_row = 0;
780 }
781
782 if (start_visual.lnum) // right click in visual mode
783 {
784 // When ALT is pressed make Visual mode blockwise.
785 if (mod_mask & MOD_MASK_ALT)
786 VIsual_mode = Ctrl_V;
787
788 // In Visual-block mode, divide the area in four, pick up the corner
789 // that is in the quarter that the cursor is in.
790 if (VIsual_mode == Ctrl_V)
791 {
792 getvcols(curwin, &start_visual, &end_visual, &leftcol, &rightcol);
793 if (curwin->w_curswant > (leftcol + rightcol) / 2)
794 end_visual.col = leftcol;
795 else
796 end_visual.col = rightcol;
797 if (curwin->w_cursor.lnum >=
798 (start_visual.lnum + end_visual.lnum) / 2)
799 end_visual.lnum = start_visual.lnum;
800
801 // move VIsual to the right column
802 start_visual = curwin->w_cursor; // save the cursor pos
803 curwin->w_cursor = end_visual;
804 coladvance(end_visual.col);
805 VIsual = curwin->w_cursor;
806 curwin->w_cursor = start_visual; // restore the cursor
807 }
808 else
809 {
810 // If the click is before the start of visual, change the start.
811 // If the click is after the end of visual, change the end. If
812 // the click is inside the visual, change the closest side.
813 if (LT_POS(curwin->w_cursor, start_visual))
814 VIsual = end_visual;
815 else if (LT_POS(end_visual, curwin->w_cursor))
816 VIsual = start_visual;
817 else
818 {
819 // In the same line, compare column number
820 if (end_visual.lnum == start_visual.lnum)
821 {
822 if (curwin->w_cursor.col - start_visual.col >
823 end_visual.col - curwin->w_cursor.col)
824 VIsual = start_visual;
825 else
826 VIsual = end_visual;
827 }
828
829 // In different lines, compare line number
830 else
831 {
832 diff = (curwin->w_cursor.lnum - start_visual.lnum) -
833 (end_visual.lnum - curwin->w_cursor.lnum);
834
835 if (diff > 0) // closest to end
836 VIsual = start_visual;
837 else if (diff < 0) // closest to start
838 VIsual = end_visual;
839 else // in the middle line
840 {
841 if (curwin->w_cursor.col <
842 (start_visual.col + end_visual.col) / 2)
843 VIsual = end_visual;
844 else
845 VIsual = start_visual;
846 }
847 }
848 }
849 }
850 }
851 // If Visual mode started in insert mode, execute "CTRL-O"
Bram Moolenaar24959102022-05-07 20:01:16 +0100852 else if ((State & MODE_INSERT) && VIsual_active)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200853 stuffcharReadbuff(Ctrl_O);
854
855 // Middle mouse click: Put text before cursor.
856 if (which_button == MOUSE_MIDDLE)
857 {
858#ifdef FEAT_CLIPBOARD
859 if (clip_star.available && regname == 0)
860 regname = '*';
861#endif
862 if (yank_register_mline(regname))
863 {
864 if (mouse_past_bottom)
865 dir = FORWARD;
866 }
867 else if (mouse_past_eol)
868 dir = FORWARD;
869
870 if (fixindent)
871 {
872 c1 = (dir == BACKWARD) ? '[' : ']';
873 c2 = 'p';
874 }
875 else
876 {
877 c1 = (dir == FORWARD) ? 'p' : 'P';
878 c2 = NUL;
879 }
880 prep_redo(regname, count, NUL, c1, NUL, c2, NUL);
881
882 // Remember where the paste started, so in edit() Insstart can be set
883 // to this position
884 if (restart_edit != 0)
885 where_paste_started = curwin->w_cursor;
Bram Moolenaarc3516f72020-09-08 22:45:35 +0200886 do_put(regname, NULL, dir, count, fixindent | PUT_CURSEND);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200887 }
888
889#if defined(FEAT_QUICKFIX)
890 // Ctrl-Mouse click or double click in a quickfix window jumps to the
891 // error under the mouse pointer.
892 else if (((mod_mask & MOD_MASK_CTRL)
893 || (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
894 && bt_quickfix(curbuf))
895 {
896 if (curwin->w_llist_ref == NULL) // quickfix window
897 do_cmdline_cmd((char_u *)".cc");
898 else // location list window
899 do_cmdline_cmd((char_u *)".ll");
zeertzjq8e0ccb62022-11-01 18:35:27 +0000900 got_click = FALSE; // ignore drag&release now
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200901 }
902#endif
903
904 // Ctrl-Mouse click (or double click in a help window) jumps to the tag
905 // under the mouse pointer.
906 else if ((mod_mask & MOD_MASK_CTRL) || (curbuf->b_help
907 && (mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK))
908 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100909 if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200910 stuffcharReadbuff(Ctrl_O);
911 stuffcharReadbuff(Ctrl_RSB);
zeertzjq8e0ccb62022-11-01 18:35:27 +0000912 got_click = FALSE; // ignore drag&release now
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200913 }
914
915 // Shift-Mouse click searches for the next occurrence of the word under
916 // the mouse pointer
917 else if ((mod_mask & MOD_MASK_SHIFT))
918 {
Bram Moolenaar24959102022-05-07 20:01:16 +0100919 if ((State & MODE_INSERT) || (VIsual_active && VIsual_select))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200920 stuffcharReadbuff(Ctrl_O);
921 if (which_button == MOUSE_LEFT)
922 stuffcharReadbuff('*');
923 else // MOUSE_RIGHT
924 stuffcharReadbuff('#');
925 }
926
927 // Handle double clicks, unless on status line
928 else if (in_status_line)
929 {
930#ifdef FEAT_MOUSESHAPE
931 if ((is_drag || is_click) && !drag_status_line)
932 {
933 drag_status_line = TRUE;
934 update_mouseshape(-1);
935 }
936#endif
937 }
938 else if (in_sep_line)
939 {
940#ifdef FEAT_MOUSESHAPE
941 if ((is_drag || is_click) && !drag_sep_line)
942 {
943 drag_sep_line = TRUE;
944 update_mouseshape(-1);
945 }
946#endif
947 }
Bram Moolenaar24959102022-05-07 20:01:16 +0100948 else if ((mod_mask & MOD_MASK_MULTI_CLICK)
949 && (State & (MODE_NORMAL | MODE_INSERT))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +0200950 && mouse_has(MOUSE_VISUAL))
951 {
952 if (is_click || !VIsual_active)
953 {
954 if (VIsual_active)
955 orig_cursor = VIsual;
956 else
957 {
958 check_visual_highlight();
959 VIsual = curwin->w_cursor;
960 orig_cursor = VIsual;
961 VIsual_active = TRUE;
962 VIsual_reselect = TRUE;
963 // start Select mode if 'selectmode' contains "mouse"
964 may_start_select('o');
965 setmouse();
966 }
967 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
968 {
969 // Double click with ALT pressed makes it blockwise.
970 if (mod_mask & MOD_MASK_ALT)
971 VIsual_mode = Ctrl_V;
972 else
973 VIsual_mode = 'v';
974 }
975 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_3CLICK)
976 VIsual_mode = 'V';
977 else if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_4CLICK)
978 VIsual_mode = Ctrl_V;
979#ifdef FEAT_CLIPBOARD
980 // Make sure the clipboard gets updated. Needed because start and
981 // end may still be the same, and the selection needs to be owned
982 clip_star.vmode = NUL;
983#endif
984 }
985 // A double click selects a word or a block.
986 if ((mod_mask & MOD_MASK_MULTI_CLICK) == MOD_MASK_2CLICK)
987 {
988 pos_T *pos = NULL;
989 int gc;
990
991 if (is_click)
992 {
993 // If the character under the cursor (skipping white space) is
994 // not a word character, try finding a match and select a (),
995 // {}, [], #if/#endif, etc. block.
996 end_visual = curwin->w_cursor;
997 while (gc = gchar_pos(&end_visual), VIM_ISWHITE(gc))
998 inc(&end_visual);
999 if (oap != NULL)
1000 oap->motion_type = MCHAR;
1001 if (oap != NULL
1002 && VIsual_mode == 'v'
1003 && !vim_iswordc(gchar_pos(&end_visual))
1004 && EQUAL_POS(curwin->w_cursor, VIsual)
1005 && (pos = findmatch(oap, NUL)) != NULL)
1006 {
1007 curwin->w_cursor = *pos;
1008 if (oap->motion_type == MLINE)
1009 VIsual_mode = 'V';
1010 else if (*p_sel == 'e')
1011 {
1012 if (LT_POS(curwin->w_cursor, VIsual))
1013 ++VIsual.col;
1014 else
1015 ++curwin->w_cursor.col;
1016 }
1017 }
1018 }
1019
1020 if (pos == NULL && (is_click || is_drag))
1021 {
1022 // When not found a match or when dragging: extend to include
1023 // a word.
1024 if (LT_POS(curwin->w_cursor, orig_cursor))
1025 {
1026 find_start_of_word(&curwin->w_cursor);
1027 find_end_of_word(&VIsual);
1028 }
1029 else
1030 {
1031 find_start_of_word(&VIsual);
1032 if (*p_sel == 'e' && *ml_get_cursor() != NUL)
1033 curwin->w_cursor.col +=
1034 (*mb_ptr2len)(ml_get_cursor());
1035 find_end_of_word(&curwin->w_cursor);
1036 }
1037 }
1038 curwin->w_set_curswant = TRUE;
1039 }
1040 if (is_click)
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001041 redraw_curbuf_later(UPD_INVERTED); // update the inversion
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001042 }
1043 else if (VIsual_active && !old_active)
1044 {
1045 if (mod_mask & MOD_MASK_ALT)
1046 VIsual_mode = Ctrl_V;
1047 else
1048 VIsual_mode = 'v';
1049 }
1050
1051 // If Visual mode changed show it later.
1052 if ((!VIsual_active && old_active && mode_displayed)
1053 || (VIsual_active && p_smd && msg_silent == 0
1054 && (!old_active || VIsual_mode != old_mode)))
1055 redraw_cmdline = TRUE;
1056
1057 return moved;
1058}
1059
1060 void
1061ins_mouse(int c)
1062{
1063 pos_T tpos;
1064 win_T *old_curwin = curwin;
1065
Christopher Plewright696d0a82022-11-18 17:53:34 +00001066#ifdef FEAT_GUI
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001067 // When GUI is active, also move/paste when 'mouse' is empty
1068 if (!gui.in_use)
Christopher Plewright696d0a82022-11-18 17:53:34 +00001069#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001070 if (!mouse_has(MOUSE_INSERT))
1071 return;
1072
1073 undisplay_dollar();
1074 tpos = curwin->w_cursor;
1075 if (do_mouse(NULL, c, BACKWARD, 1L, 0))
1076 {
1077 win_T *new_curwin = curwin;
1078
1079 if (curwin != old_curwin && win_valid(old_curwin))
1080 {
1081 // Mouse took us to another window. We need to go back to the
1082 // previous one to stop insert there properly.
1083 curwin = old_curwin;
1084 curbuf = curwin->w_buffer;
1085#ifdef FEAT_JOB_CHANNEL
1086 if (bt_prompt(curbuf))
1087 // Restart Insert mode when re-entering the prompt buffer.
1088 curbuf->b_prompt_insert = 'A';
1089#endif
1090 }
1091 start_arrow(curwin == old_curwin ? &tpos : NULL);
1092 if (curwin != new_curwin && win_valid(new_curwin))
1093 {
1094 curwin = new_curwin;
1095 curbuf = curwin->w_buffer;
1096 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001097 set_can_cindent(TRUE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001098 }
1099
1100 // redraw status lines (in case another window became active)
1101 redraw_statuslines();
1102}
1103
Christopher Plewright44c22092022-11-15 17:43:36 +00001104/*
Christopher Plewright696d0a82022-11-18 17:53:34 +00001105 * Implementation for scrolling in Insert mode in direction "dir", which is one
1106 * of the MSCR_ values.
Christopher Plewright44c22092022-11-15 17:43:36 +00001107 */
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001108 void
1109ins_mousescroll(int dir)
1110{
Christopher Plewright696d0a82022-11-18 17:53:34 +00001111 cmdarg_T cap;
1112 oparg_T oa;
Christopher Plewright44c22092022-11-15 17:43:36 +00001113 CLEAR_FIELD(cap);
Christopher Plewright44c22092022-11-15 17:43:36 +00001114 clear_oparg(&oa);
1115 cap.oap = &oa;
Christopher Plewright44c22092022-11-15 17:43:36 +00001116 cap.arg = dir;
Christopher Plewright696d0a82022-11-18 17:53:34 +00001117
Christopher Plewright44c22092022-11-15 17:43:36 +00001118 switch (dir)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001119 {
Christopher Plewright44c22092022-11-15 17:43:36 +00001120 case MSCR_UP:
1121 cap.cmdchar = K_MOUSEUP;
1122 break;
1123 case MSCR_DOWN:
1124 cap.cmdchar = K_MOUSEDOWN;
1125 break;
1126 case MSCR_LEFT:
1127 cap.cmdchar = K_MOUSELEFT;
1128 break;
1129 case MSCR_RIGHT:
1130 cap.cmdchar = K_MOUSERIGHT;
1131 break;
1132 default:
1133 siemsg("Invalid ins_mousescroll() argument: %d", dir);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001134 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00001135
1136 win_T *wp = curwin;
1137 if (mouse_row >= 0 && mouse_col >= 0)
1138 {
1139 // Find the window at the mouse pointer coordinates.
1140 int row = mouse_row;
1141 int col = mouse_col;
1142 wp = mouse_find_win(&row, &col, FIND_POPUP);
1143 if (wp == NULL)
1144 return;
1145 }
1146
1147 if (wp == curwin)
1148 {
1149 // Don't scroll the current window if the popup menu is visible.
1150 if (pum_visible())
1151 return;
1152
1153 undisplay_dollar();
1154 }
1155
1156 linenr_T orig_topline = wp->w_topline;
1157 colnr_T orig_leftcol = wp->w_leftcol;
1158 pos_T orig_cursor = curwin->w_cursor;
1159
1160 // The scrolling works almost the same way as in Normal mode.
1161 nv_mousescroll(&cap);
1162
1163 // If the window actually scrolled and the popup menu may overlay the
1164 // window, need to redraw it.
1165 if ((orig_topline != wp->w_topline || orig_leftcol != wp->w_leftcol)
1166 && pum_visible())
1167 {
1168 // TODO: Would be more efficient to only redraw the windows that are
1169 // overlapped by the popup menu.
1170 redraw_all_later(UPD_NOT_VALID);
1171 ins_compl_show_pum();
1172 }
1173
1174 if (!EQUAL_POS(curwin->w_cursor, orig_cursor))
1175 {
1176 start_arrow(&orig_cursor);
1177 set_can_cindent(TRUE);
1178 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001179}
1180
1181/*
1182 * Return TRUE if "c" is a mouse key.
1183 */
1184 int
1185is_mouse_key(int c)
1186{
1187 return c == K_LEFTMOUSE
1188 || c == K_LEFTMOUSE_NM
1189 || c == K_LEFTDRAG
1190 || c == K_LEFTRELEASE
1191 || c == K_LEFTRELEASE_NM
1192 || c == K_MOUSEMOVE
1193 || c == K_MIDDLEMOUSE
1194 || c == K_MIDDLEDRAG
1195 || c == K_MIDDLERELEASE
1196 || c == K_RIGHTMOUSE
1197 || c == K_RIGHTDRAG
1198 || c == K_RIGHTRELEASE
1199 || c == K_MOUSEDOWN
1200 || c == K_MOUSEUP
1201 || c == K_MOUSELEFT
1202 || c == K_MOUSERIGHT
1203 || c == K_X1MOUSE
1204 || c == K_X1DRAG
1205 || c == K_X1RELEASE
1206 || c == K_X2MOUSE
1207 || c == K_X2DRAG
1208 || c == K_X2RELEASE;
1209}
1210
1211static struct mousetable
1212{
1213 int pseudo_code; // Code for pseudo mouse event
1214 int button; // Which mouse button is it?
1215 int is_click; // Is it a mouse button click event?
1216 int is_drag; // Is it a mouse drag event?
1217} mouse_table[] =
1218{
1219 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
1220#ifdef FEAT_GUI
1221 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
1222#endif
1223 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
1224 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
1225#ifdef FEAT_GUI
1226 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
1227#endif
1228 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
1229 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
1230 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
1231 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
1232 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
1233 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
1234 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
1235 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
1236 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
1237 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
1238 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
1239 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
1240 // DRAG without CLICK
1241 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
1242 // RELEASE without CLICK
1243 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
1244 {0, 0, 0, 0},
1245};
1246
1247/*
1248 * Look up the given mouse code to return the relevant information in the other
1249 * arguments. Return which button is down or was released.
1250 */
1251 int
1252get_mouse_button(int code, int *is_click, int *is_drag)
1253{
1254 int i;
1255
1256 for (i = 0; mouse_table[i].pseudo_code; i++)
1257 if (code == mouse_table[i].pseudo_code)
1258 {
1259 *is_click = mouse_table[i].is_click;
1260 *is_drag = mouse_table[i].is_drag;
1261 return mouse_table[i].button;
1262 }
1263 return 0; // Shouldn't get here
1264}
1265
1266/*
1267 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
1268 * the given information about which mouse button is down, and whether the
1269 * mouse was clicked, dragged or released.
1270 */
1271 int
1272get_pseudo_mouse_code(
1273 int button, // eg MOUSE_LEFT
1274 int is_click,
1275 int is_drag)
1276{
1277 int i;
1278
1279 for (i = 0; mouse_table[i].pseudo_code; i++)
1280 if (button == mouse_table[i].button
1281 && is_click == mouse_table[i].is_click
1282 && is_drag == mouse_table[i].is_drag)
1283 {
1284#ifdef FEAT_GUI
1285 // Trick: a non mappable left click and release has mouse_col -1
1286 // or added MOUSE_COLOFF. Used for 'mousefocus' in
1287 // gui_mouse_moved()
1288 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
1289 {
1290 if (mouse_col < 0)
1291 mouse_col = 0;
1292 else
1293 mouse_col -= MOUSE_COLOFF;
1294 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
1295 return (int)KE_LEFTMOUSE_NM;
1296 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
1297 return (int)KE_LEFTRELEASE_NM;
1298 }
1299#endif
1300 return mouse_table[i].pseudo_code;
1301 }
1302 return (int)KE_IGNORE; // not recognized, ignore it
1303}
1304
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001305# define HMT_NORMAL 1
1306# define HMT_NETTERM 2
1307# define HMT_DEC 4
1308# define HMT_JSBTERM 8
1309# define HMT_PTERM 16
1310# define HMT_URXVT 32
1311# define HMT_GPM 64
1312# define HMT_SGR 128
1313# define HMT_SGR_REL 256
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001314static int has_mouse_termcode = 0;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001315
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001316 void
1317set_mouse_termcode(
1318 int n, // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE
1319 char_u *s)
1320{
1321 char_u name[2];
1322
1323 name[0] = n;
1324 name[1] = KE_FILLER;
1325 add_termcode(name, s, FALSE);
Christopher Plewright696d0a82022-11-18 17:53:34 +00001326#ifdef FEAT_MOUSE_JSB
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001327 if (n == KS_JSBTERM_MOUSE)
1328 has_mouse_termcode |= HMT_JSBTERM;
1329 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001330#endif
1331#ifdef FEAT_MOUSE_NET
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001332 if (n == KS_NETTERM_MOUSE)
1333 has_mouse_termcode |= HMT_NETTERM;
1334 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001335#endif
1336#ifdef FEAT_MOUSE_DEC
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001337 if (n == KS_DEC_MOUSE)
1338 has_mouse_termcode |= HMT_DEC;
1339 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001340#endif
1341#ifdef FEAT_MOUSE_PTERM
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001342 if (n == KS_PTERM_MOUSE)
1343 has_mouse_termcode |= HMT_PTERM;
1344 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001345#endif
1346#ifdef FEAT_MOUSE_URXVT
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001347 if (n == KS_URXVT_MOUSE)
1348 has_mouse_termcode |= HMT_URXVT;
1349 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001350#endif
1351#ifdef FEAT_MOUSE_GPM
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001352 if (n == KS_GPM_MOUSE)
1353 has_mouse_termcode |= HMT_GPM;
1354 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001355#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001356 if (n == KS_SGR_MOUSE)
1357 has_mouse_termcode |= HMT_SGR;
1358 else if (n == KS_SGR_MOUSE_RELEASE)
1359 has_mouse_termcode |= HMT_SGR_REL;
1360 else
1361 has_mouse_termcode |= HMT_NORMAL;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001362}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001363
Christopher Plewright696d0a82022-11-18 17:53:34 +00001364#if defined(UNIX) || defined(VMS) || defined(PROTO)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001365 void
1366del_mouse_termcode(
1367 int n) // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE
1368{
1369 char_u name[2];
1370
1371 name[0] = n;
1372 name[1] = KE_FILLER;
1373 del_termcode(name);
Christopher Plewright696d0a82022-11-18 17:53:34 +00001374# ifdef FEAT_MOUSE_JSB
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001375 if (n == KS_JSBTERM_MOUSE)
1376 has_mouse_termcode &= ~HMT_JSBTERM;
1377 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001378# endif
1379# ifdef FEAT_MOUSE_NET
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001380 if (n == KS_NETTERM_MOUSE)
1381 has_mouse_termcode &= ~HMT_NETTERM;
1382 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001383# endif
1384# ifdef FEAT_MOUSE_DEC
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001385 if (n == KS_DEC_MOUSE)
1386 has_mouse_termcode &= ~HMT_DEC;
1387 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001388# endif
1389# ifdef FEAT_MOUSE_PTERM
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001390 if (n == KS_PTERM_MOUSE)
1391 has_mouse_termcode &= ~HMT_PTERM;
1392 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001393# endif
1394# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001395 if (n == KS_URXVT_MOUSE)
1396 has_mouse_termcode &= ~HMT_URXVT;
1397 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001398# endif
1399# ifdef FEAT_MOUSE_GPM
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001400 if (n == KS_GPM_MOUSE)
1401 has_mouse_termcode &= ~HMT_GPM;
1402 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00001403# endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001404 if (n == KS_SGR_MOUSE)
1405 has_mouse_termcode &= ~HMT_SGR;
1406 else if (n == KS_SGR_MOUSE_RELEASE)
1407 has_mouse_termcode &= ~HMT_SGR_REL;
1408 else
1409 has_mouse_termcode &= ~HMT_NORMAL;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001410}
Christopher Plewright696d0a82022-11-18 17:53:34 +00001411#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001412
1413/*
1414 * setmouse() - switch mouse on/off depending on current mode and 'mouse'
1415 */
1416 void
1417setmouse(void)
1418{
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001419 int checkfor;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001420
Christopher Plewright696d0a82022-11-18 17:53:34 +00001421#ifdef FEAT_MOUSESHAPE
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001422 update_mouseshape(-1);
Christopher Plewright696d0a82022-11-18 17:53:34 +00001423#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001424
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001425 // Should be outside proc, but may break MOUSESHAPE
Christopher Plewright696d0a82022-11-18 17:53:34 +00001426#ifdef FEAT_GUI
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001427 // In the GUI the mouse is always enabled.
1428 if (gui.in_use)
1429 return;
Christopher Plewright696d0a82022-11-18 17:53:34 +00001430#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001431 // be quick when mouse is off
1432 if (*p_mouse == NUL || has_mouse_termcode == 0)
1433 return;
1434
1435 // don't switch mouse on when not in raw mode (Ex mode)
1436 if (cur_tmode != TMODE_RAW)
1437 {
1438 mch_setmouse(FALSE);
1439 return;
1440 }
1441
1442 if (VIsual_active)
1443 checkfor = MOUSE_VISUAL;
Bram Moolenaar24959102022-05-07 20:01:16 +01001444 else if (State == MODE_HITRETURN || State == MODE_ASKMORE
1445 || State == MODE_SETWSIZE)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001446 checkfor = MOUSE_RETURN;
Bram Moolenaar24959102022-05-07 20:01:16 +01001447 else if (State & MODE_INSERT)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001448 checkfor = MOUSE_INSERT;
Bram Moolenaar24959102022-05-07 20:01:16 +01001449 else if (State & MODE_CMDLINE)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001450 checkfor = MOUSE_COMMAND;
Bram Moolenaar24959102022-05-07 20:01:16 +01001451 else if (State == MODE_CONFIRM || State == MODE_EXTERNCMD)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001452 checkfor = ' '; // don't use mouse for ":confirm" or ":!cmd"
1453 else
1454 checkfor = MOUSE_NORMAL; // assume normal mode
1455
1456 if (mouse_has(checkfor))
1457 mch_setmouse(TRUE);
1458 else
1459 mch_setmouse(FALSE);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001460}
1461
1462/*
1463 * Return TRUE if
1464 * - "c" is in 'mouse', or
1465 * - 'a' is in 'mouse' and "c" is in MOUSE_A, or
1466 * - the current buffer is a help file and 'h' is in 'mouse' and we are in a
1467 * normal editing mode (not at hit-return message).
1468 */
1469 int
1470mouse_has(int c)
1471{
1472 char_u *p;
1473
1474 for (p = p_mouse; *p; ++p)
1475 switch (*p)
1476 {
1477 case 'a': if (vim_strchr((char_u *)MOUSE_A, c) != NULL)
1478 return TRUE;
1479 break;
1480 case MOUSE_HELP: if (c != MOUSE_RETURN && curbuf->b_help)
1481 return TRUE;
1482 break;
1483 default: if (c == *p) return TRUE; break;
1484 }
1485 return FALSE;
1486}
1487
1488/*
1489 * Return TRUE when 'mousemodel' is set to "popup" or "popup_setpos".
1490 */
1491 int
1492mouse_model_popup(void)
1493{
1494 return (p_mousem[0] == 'p');
1495}
1496
zeertzjq8e0ccb62022-11-01 18:35:27 +00001497static win_T *dragwin = NULL; // window being dragged
1498
1499/*
1500 * Reset the window being dragged. To be called when switching tab page.
1501 */
1502 void
1503reset_dragwin(void)
1504{
1505 dragwin = NULL;
1506}
1507
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001508/*
1509 * Move the cursor to the specified row and column on the screen.
1510 * Change current window if necessary. Returns an integer with the
1511 * CURSOR_MOVED bit set if the cursor has moved or unset otherwise.
1512 *
1513 * The MOUSE_FOLD_CLOSE bit is set when clicked on the '-' in a fold column.
1514 * The MOUSE_FOLD_OPEN bit is set when clicked on the '+' in a fold column.
1515 *
1516 * If flags has MOUSE_FOCUS, then the current window will not be changed, and
1517 * if the mouse is outside the window then the text will scroll, or if the
1518 * mouse was previously on a status line, then the status line may be dragged.
1519 *
1520 * If flags has MOUSE_MAY_VIS, then VIsual mode will be started before the
1521 * cursor is moved unless the cursor was on a status line.
1522 * This function returns one of IN_UNKNOWN, IN_BUFFER, IN_STATUS_LINE or
1523 * IN_SEP_LINE depending on where the cursor was clicked.
1524 *
1525 * If flags has MOUSE_MAY_STOP_VIS, then Visual mode will be stopped, unless
1526 * the mouse is on the status line of the same window.
1527 *
1528 * If flags has MOUSE_DID_MOVE, nothing is done if the mouse didn't move since
1529 * the last call.
1530 *
1531 * If flags has MOUSE_SETPOS, nothing is done, only the current position is
1532 * remembered.
1533 */
1534 int
1535jump_to_mouse(
1536 int flags,
1537 int *inclusive, // used for inclusive operator, can be NULL
1538 int which_button) // MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE
1539{
1540 static int on_status_line = 0; // #lines below bottom of window
1541 static int on_sep_line = 0; // on separator right of window
1542#ifdef FEAT_MENU
1543 static int in_winbar = FALSE;
1544#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001545#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001546 static int in_popup_win = FALSE;
1547 static win_T *click_in_popup_win = NULL;
1548#endif
1549 static int prev_row = -1;
1550 static int prev_col = -1;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001551 static int did_drag = FALSE; // drag was noticed
1552
1553 win_T *wp, *old_curwin;
1554 pos_T old_cursor;
1555 int count;
1556 int first;
1557 int row = mouse_row;
1558 int col = mouse_col;
Bram Moolenaarb9081882022-07-09 04:56:24 +01001559 colnr_T col_from_screen = -1;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001560#ifdef FEAT_FOLDING
Bram Moolenaarb9081882022-07-09 04:56:24 +01001561 int mouse_char = ' ';
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001562#endif
1563
1564 mouse_past_bottom = FALSE;
1565 mouse_past_eol = FALSE;
1566
1567 if (flags & MOUSE_RELEASED)
1568 {
1569 // On button release we may change window focus if positioned on a
1570 // status line and no dragging happened.
1571 if (dragwin != NULL && !did_drag)
1572 flags &= ~(MOUSE_FOCUS | MOUSE_DID_MOVE);
1573 dragwin = NULL;
1574 did_drag = FALSE;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001575#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001576 if (click_in_popup_win != NULL && popup_dragwin == NULL)
1577 popup_close_for_mouse_click(click_in_popup_win);
1578
1579 popup_dragwin = NULL;
1580 click_in_popup_win = NULL;
1581#endif
1582 }
1583
1584 if ((flags & MOUSE_DID_MOVE)
1585 && prev_row == mouse_row
1586 && prev_col == mouse_col)
1587 {
1588retnomove:
1589 // before moving the cursor for a left click which is NOT in a status
1590 // line, stop Visual mode
1591 if (on_status_line)
1592 return IN_STATUS_LINE;
1593 if (on_sep_line)
1594 return IN_SEP_LINE;
1595#ifdef FEAT_MENU
1596 if (in_winbar)
1597 {
1598 // A quick second click may arrive as a double-click, but we use it
1599 // as a second click in the WinBar.
1600 if ((mod_mask & MOD_MASK_MULTI_CLICK) && !(flags & MOUSE_RELEASED))
1601 {
1602 wp = mouse_find_win(&row, &col, FAIL_POPUP);
1603 if (wp == NULL)
1604 return IN_UNKNOWN;
1605 winbar_click(wp, col);
1606 }
1607 return IN_OTHER_WIN | MOUSE_WINBAR;
1608 }
1609#endif
1610 if (flags & MOUSE_MAY_STOP_VIS)
1611 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001612 end_visual_mode_keep_button();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001613 redraw_curbuf_later(UPD_INVERTED); // delete the inversion
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001614 }
Martin Tournoij7904fa42022-10-04 16:28:45 +01001615#if defined(FEAT_CLIPBOARD)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001616 // Continue a modeless selection in another window.
1617 if (cmdwin_type != 0 && row < curwin->w_winrow)
1618 return IN_OTHER_WIN;
1619#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001620#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001621 // Continue a modeless selection in a popup window or dragging it.
1622 if (in_popup_win)
1623 {
1624 click_in_popup_win = NULL; // don't close it on release
1625 if (popup_dragwin != NULL)
1626 {
1627 // dragging a popup window
1628 popup_drag(popup_dragwin);
1629 return IN_UNKNOWN;
1630 }
1631 return IN_OTHER_WIN;
1632 }
1633#endif
1634 return IN_BUFFER;
1635 }
1636
1637 prev_row = mouse_row;
1638 prev_col = mouse_col;
1639
1640 if (flags & MOUSE_SETPOS)
1641 goto retnomove; // ugly goto...
1642
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001643 old_curwin = curwin;
1644 old_cursor = curwin->w_cursor;
1645
1646 if (!(flags & MOUSE_FOCUS))
1647 {
1648 if (row < 0 || col < 0) // check if it makes sense
1649 return IN_UNKNOWN;
1650
1651 // find the window where the row is in and adjust "row" and "col" to be
1652 // relative to top-left of the window
1653 wp = mouse_find_win(&row, &col, FIND_POPUP);
1654 if (wp == NULL)
1655 return IN_UNKNOWN;
1656 dragwin = NULL;
1657
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001658#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001659 // Click in a popup window may start dragging or modeless selection,
1660 // but not much else.
1661 if (WIN_IS_POPUP(wp))
1662 {
1663 on_sep_line = 0;
Bram Moolenaarbfc57862021-11-26 15:57:40 +00001664 on_status_line = 0;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001665 in_popup_win = TRUE;
1666 if (which_button == MOUSE_LEFT && popup_close_if_on_X(wp, row, col))
1667 {
1668 return IN_UNKNOWN;
1669 }
Bram Moolenaar0b74d002021-11-29 17:38:02 +00001670 else if (((wp->w_popup_flags & (POPF_DRAG | POPF_RESIZE))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001671 && popup_on_border(wp, row, col))
Bram Moolenaar0b74d002021-11-29 17:38:02 +00001672 || (wp->w_popup_flags & POPF_DRAGALL))
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001673 {
1674 popup_dragwin = wp;
1675 popup_start_drag(wp, row, col);
1676 return IN_UNKNOWN;
1677 }
1678 // Only close on release, otherwise it's not possible to drag or do
1679 // modeless selection.
1680 else if (wp->w_popup_close == POPCLOSE_CLICK
1681 && which_button == MOUSE_LEFT)
1682 {
1683 click_in_popup_win = wp;
1684 }
1685 else if (which_button == MOUSE_LEFT)
1686 // If the click is in the scrollbar, may scroll up/down.
1687 popup_handle_scrollbar_click(wp, row, col);
1688# ifdef FEAT_CLIPBOARD
1689 return IN_OTHER_WIN;
1690# else
1691 return IN_UNKNOWN;
1692# endif
1693 }
1694 in_popup_win = FALSE;
1695 popup_dragwin = NULL;
1696#endif
1697#ifdef FEAT_MENU
1698 if (row == -1)
1699 {
1700 // A click in the window toolbar does not enter another window or
1701 // change Visual highlighting.
1702 winbar_click(wp, col);
1703 in_winbar = TRUE;
1704 return IN_OTHER_WIN | MOUSE_WINBAR;
1705 }
1706 in_winbar = FALSE;
1707#endif
1708
1709 // winpos and height may change in win_enter()!
1710 if (row >= wp->w_height) // In (or below) status line
1711 {
1712 on_status_line = row - wp->w_height + 1;
1713 dragwin = wp;
1714 }
1715 else
1716 on_status_line = 0;
1717 if (col >= wp->w_width) // In separator line
1718 {
1719 on_sep_line = col - wp->w_width + 1;
1720 dragwin = wp;
1721 }
1722 else
1723 on_sep_line = 0;
1724
1725 // The rightmost character of the status line might be a vertical
1726 // separator character if there is no connecting window to the right.
1727 if (on_status_line && on_sep_line)
1728 {
1729 if (stl_connected(wp))
1730 on_sep_line = 0;
1731 else
1732 on_status_line = 0;
1733 }
1734
1735 // Before jumping to another buffer, or moving the cursor for a left
1736 // click, stop Visual mode.
1737 if (VIsual_active
1738 && (wp->w_buffer != curwin->w_buffer
1739 || (!on_status_line && !on_sep_line
1740#ifdef FEAT_FOLDING
1741 && (
1742# ifdef FEAT_RIGHTLEFT
1743 wp->w_p_rl ? col < wp->w_width - wp->w_p_fdc :
1744# endif
Martin Tournoij7904fa42022-10-04 16:28:45 +01001745 col >= wp->w_p_fdc + (cmdwin_type == 0 && wp == curwin ? 0 : 1)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001746 )
1747#endif
1748 && (flags & MOUSE_MAY_STOP_VIS))))
1749 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001750 end_visual_mode_keep_button();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001751 redraw_curbuf_later(UPD_INVERTED); // delete the inversion
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001752 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001753 if (cmdwin_type != 0 && wp != curwin)
1754 {
1755 // A click outside the command-line window: Use modeless
1756 // selection if possible. Allow dragging the status lines.
1757 on_sep_line = 0;
Christopher Plewright696d0a82022-11-18 17:53:34 +00001758#ifdef FEAT_CLIPBOARD
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001759 if (on_status_line)
1760 return IN_STATUS_LINE;
1761 return IN_OTHER_WIN;
Christopher Plewright696d0a82022-11-18 17:53:34 +00001762#else
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001763 row = 0;
1764 col += wp->w_wincol;
1765 wp = curwin;
Christopher Plewright696d0a82022-11-18 17:53:34 +00001766#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001767 }
Bram Moolenaar219c7d02020-02-01 21:57:29 +01001768#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
1769 if (popup_is_popup(curwin) && curbuf->b_term != NULL)
1770 // terminal in popup window: don't jump to another window
1771 return IN_OTHER_WIN;
1772#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001773 // Only change window focus when not clicking on or dragging the
1774 // status line. Do change focus when releasing the mouse button
1775 // (MOUSE_FOCUS was set above if we dragged first).
1776 if (dragwin == NULL || (flags & MOUSE_RELEASED))
1777 win_enter(wp, TRUE); // can make wp invalid!
1778
1779 if (curwin != old_curwin)
1780 {
1781#ifdef CHECK_DOUBLE_CLICK
1782 // set topline, to be able to check for double click ourselves
1783 set_mouse_topline(curwin);
1784#endif
1785#ifdef FEAT_TERMINAL
1786 // when entering a terminal window may change state
1787 term_win_entered();
1788#endif
1789 }
1790 if (on_status_line) // In (or below) status line
1791 {
1792 // Don't use start_arrow() if we're in the same window
1793 if (curwin == old_curwin)
1794 return IN_STATUS_LINE;
1795 else
1796 return IN_STATUS_LINE | CURSOR_MOVED;
1797 }
1798 if (on_sep_line) // In (or below) status line
1799 {
1800 // Don't use start_arrow() if we're in the same window
1801 if (curwin == old_curwin)
1802 return IN_SEP_LINE;
1803 else
1804 return IN_SEP_LINE | CURSOR_MOVED;
1805 }
1806
1807 curwin->w_cursor.lnum = curwin->w_topline;
1808#ifdef FEAT_GUI
1809 // remember topline, needed for double click
1810 gui_prev_topline = curwin->w_topline;
1811# ifdef FEAT_DIFF
1812 gui_prev_topfill = curwin->w_topfill;
1813# endif
1814#endif
1815 }
1816 else if (on_status_line && which_button == MOUSE_LEFT)
1817 {
1818 if (dragwin != NULL)
1819 {
1820 // Drag the status line
zeertzjq6dab00a2022-05-20 13:45:59 +01001821 count = row - W_WINROW(dragwin) - dragwin->w_height + 1
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001822 - on_status_line;
1823 win_drag_status_line(dragwin, count);
1824 did_drag |= count;
1825 }
1826 return IN_STATUS_LINE; // Cursor didn't move
1827 }
1828 else if (on_sep_line && which_button == MOUSE_LEFT)
1829 {
1830 if (dragwin != NULL)
1831 {
1832 // Drag the separator column
1833 count = col - dragwin->w_wincol - dragwin->w_width + 1
1834 - on_sep_line;
1835 win_drag_vsep_line(dragwin, count);
1836 did_drag |= count;
1837 }
1838 return IN_SEP_LINE; // Cursor didn't move
1839 }
1840#ifdef FEAT_MENU
1841 else if (in_winbar)
1842 {
1843 // After a click on the window toolbar don't start Visual mode.
1844 return IN_OTHER_WIN | MOUSE_WINBAR;
1845 }
1846#endif
1847 else // keep_window_focus must be TRUE
1848 {
1849 // before moving the cursor for a left click, stop Visual mode
1850 if (flags & MOUSE_MAY_STOP_VIS)
1851 {
Bram Moolenaar4f3c57f2021-06-03 22:11:08 +02001852 end_visual_mode_keep_button();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001853 redraw_curbuf_later(UPD_INVERTED); // delete the inversion
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001854 }
1855
Martin Tournoij7904fa42022-10-04 16:28:45 +01001856#if defined(FEAT_CLIPBOARD)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001857 // Continue a modeless selection in another window.
1858 if (cmdwin_type != 0 && row < curwin->w_winrow)
1859 return IN_OTHER_WIN;
1860#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01001861#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001862 if (in_popup_win)
1863 {
1864 if (popup_dragwin != NULL)
1865 {
1866 // dragging a popup window
1867 popup_drag(popup_dragwin);
1868 return IN_UNKNOWN;
1869 }
1870 // continue a modeless selection in a popup window
1871 click_in_popup_win = NULL;
1872 return IN_OTHER_WIN;
1873 }
1874#endif
1875
1876 row -= W_WINROW(curwin);
1877 col -= curwin->w_wincol;
1878
1879 // When clicking beyond the end of the window, scroll the screen.
1880 // Scroll by however many rows outside the window we are.
1881 if (row < 0)
1882 {
1883 count = 0;
1884 for (first = TRUE; curwin->w_topline > 1; )
1885 {
1886#ifdef FEAT_DIFF
1887 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
1888 ++count;
1889 else
1890#endif
1891 count += plines(curwin->w_topline - 1);
1892 if (!first && count > -row)
1893 break;
1894 first = FALSE;
1895#ifdef FEAT_FOLDING
1896 (void)hasFolding(curwin->w_topline, &curwin->w_topline, NULL);
1897#endif
1898#ifdef FEAT_DIFF
1899 if (curwin->w_topfill < diff_check(curwin, curwin->w_topline))
1900 ++curwin->w_topfill;
1901 else
1902#endif
1903 {
1904 --curwin->w_topline;
1905#ifdef FEAT_DIFF
1906 curwin->w_topfill = 0;
1907#endif
1908 }
1909 }
1910#ifdef FEAT_DIFF
1911 check_topfill(curwin, FALSE);
1912#endif
1913 curwin->w_valid &=
1914 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001915 redraw_later(UPD_VALID);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001916 row = 0;
1917 }
1918 else if (row >= curwin->w_height)
1919 {
1920 count = 0;
1921 for (first = TRUE; curwin->w_topline < curbuf->b_ml.ml_line_count; )
1922 {
1923#ifdef FEAT_DIFF
1924 if (curwin->w_topfill > 0)
1925 ++count;
1926 else
1927#endif
1928 count += plines(curwin->w_topline);
1929 if (!first && count > row - curwin->w_height + 1)
1930 break;
1931 first = FALSE;
1932#ifdef FEAT_FOLDING
1933 if (hasFolding(curwin->w_topline, NULL, &curwin->w_topline)
1934 && curwin->w_topline == curbuf->b_ml.ml_line_count)
1935 break;
1936#endif
1937#ifdef FEAT_DIFF
1938 if (curwin->w_topfill > 0)
1939 --curwin->w_topfill;
1940 else
1941#endif
1942 {
1943 ++curwin->w_topline;
1944#ifdef FEAT_DIFF
1945 curwin->w_topfill =
1946 diff_check_fill(curwin, curwin->w_topline);
1947#endif
1948 }
1949 }
1950#ifdef FEAT_DIFF
1951 check_topfill(curwin, FALSE);
1952#endif
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001953 redraw_later(UPD_VALID);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001954 curwin->w_valid &=
1955 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP);
1956 row = curwin->w_height - 1;
1957 }
1958 else if (row == 0)
1959 {
1960 // When dragging the mouse, while the text has been scrolled up as
1961 // far as it goes, moving the mouse in the top line should scroll
1962 // the text down (done later when recomputing w_topline).
1963 if (mouse_dragging > 0
1964 && curwin->w_cursor.lnum
1965 == curwin->w_buffer->b_ml.ml_line_count
1966 && curwin->w_cursor.lnum == curwin->w_topline)
1967 curwin->w_valid &= ~(VALID_TOPLINE);
1968 }
1969 }
1970
Bram Moolenaarb9081882022-07-09 04:56:24 +01001971 if (prev_row >= 0 && prev_row < Rows && prev_col >= 0 && prev_col <= Columns
1972 && ScreenLines != NULL)
1973 {
1974 int off = LineOffset[prev_row] + prev_col;
1975
1976 // Only use ScreenCols[] after the window was redrawn. Mainly matters
1977 // for tests, a user would not click before redrawing.
Bram Moolenaar8f49e692022-08-09 14:19:40 +01001978 // Do not use when 'virtualedit' is active.
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001979 if (curwin->w_redr_type <= UPD_VALID_NO_UPDATE && !virtual_active())
Bram Moolenaarb9081882022-07-09 04:56:24 +01001980 col_from_screen = ScreenCols[off];
1981#ifdef FEAT_FOLDING
1982 // Remember the character under the mouse, it might be a '-' or '+' in
1983 // the fold column.
1984 mouse_char = ScreenLines[off];
1985#endif
1986 }
1987
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001988#ifdef FEAT_FOLDING
1989 // Check for position outside of the fold column.
1990 if (
1991# ifdef FEAT_RIGHTLEFT
1992 curwin->w_p_rl ? col < curwin->w_width - curwin->w_p_fdc :
1993# endif
Martin Tournoij7904fa42022-10-04 16:28:45 +01001994 col >= curwin->w_p_fdc + (cmdwin_type == 0 ? 0 : 1)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02001995 )
1996 mouse_char = ' ';
1997#endif
1998
1999 // compute the position in the buffer line from the posn on the screen
2000 if (mouse_comp_pos(curwin, &row, &col, &curwin->w_cursor.lnum, NULL))
2001 mouse_past_bottom = TRUE;
2002
2003 // Start Visual mode before coladvance(), for when 'sel' != "old"
2004 if ((flags & MOUSE_MAY_VIS) && !VIsual_active)
2005 {
2006 check_visual_highlight();
2007 VIsual = old_cursor;
2008 VIsual_active = TRUE;
2009 VIsual_reselect = TRUE;
2010 // if 'selectmode' contains "mouse", start Select mode
2011 may_start_select('o');
2012 setmouse();
2013 if (p_smd && msg_silent == 0)
2014 redraw_cmdline = TRUE; // show visual mode later
2015 }
2016
Bram Moolenaarb9081882022-07-09 04:56:24 +01002017 if (col_from_screen >= 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002018 {
Bram Moolenaarb9081882022-07-09 04:56:24 +01002019 // Use the column from ScreenCols[], it is accurate also after
2020 // concealed characters.
2021 curwin->w_cursor.col = col_from_screen;
2022 if (col_from_screen == MAXCOL)
2023 {
2024 curwin->w_curswant = col_from_screen;
2025 curwin->w_set_curswant = FALSE; // May still have been TRUE
2026 mouse_past_eol = TRUE;
2027 if (inclusive != NULL)
2028 *inclusive = TRUE;
2029 }
2030 else
2031 {
2032 curwin->w_set_curswant = TRUE;
2033 if (inclusive != NULL)
2034 *inclusive = FALSE;
2035 }
2036 check_cursor_col();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002037 }
Bram Moolenaarb9081882022-07-09 04:56:24 +01002038 else
2039 {
2040 curwin->w_curswant = col;
2041 curwin->w_set_curswant = FALSE; // May still have been TRUE
2042 if (coladvance(col) == FAIL) // Mouse click beyond end of line
2043 {
2044 if (inclusive != NULL)
2045 *inclusive = TRUE;
2046 mouse_past_eol = TRUE;
2047 }
2048 else if (inclusive != NULL)
2049 *inclusive = FALSE;
2050 }
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002051
2052 count = IN_BUFFER;
2053 if (curwin != old_curwin || curwin->w_cursor.lnum != old_cursor.lnum
2054 || curwin->w_cursor.col != old_cursor.col)
2055 count |= CURSOR_MOVED; // Cursor has moved
2056
Christopher Plewright696d0a82022-11-18 17:53:34 +00002057#ifdef FEAT_FOLDING
Bram Moolenaar96ba25a2022-07-04 17:34:33 +01002058 if (mouse_char == curwin->w_fill_chars.foldclosed)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002059 count |= MOUSE_FOLD_OPEN;
2060 else if (mouse_char != ' ')
2061 count |= MOUSE_FOLD_CLOSE;
Christopher Plewright696d0a82022-11-18 17:53:34 +00002062#endif
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002063
2064 return count;
2065}
2066
2067/*
Christopher Plewright44c22092022-11-15 17:43:36 +00002068 * Make a horizontal scroll to "leftcol".
2069 * Return TRUE if the cursor moved, FALSE otherwise.
2070 */
2071 int
2072do_mousescroll_horiz(long_u leftcol)
2073{
2074 if (curwin->w_p_wrap)
2075 return FALSE; // no wrapping, no scrolling
2076
2077 if (curwin->w_leftcol == (colnr_T)leftcol)
2078 return FALSE; // already there
2079
Christopher Plewright44c22092022-11-15 17:43:36 +00002080 // When the line of the cursor is too short, move the cursor to the
2081 // longest visible line.
2082 if (
2083#ifdef FEAT_GUI
2084 (!gui.in_use || vim_strchr(p_go, GO_HORSCROLL) == NULL) &&
2085#endif
2086 !virtual_active()
2087 && (long)leftcol > scroll_line_len(curwin->w_cursor.lnum))
2088 {
2089 curwin->w_cursor.lnum = ui_find_longest_lnum();
2090 curwin->w_cursor.col = 0;
2091 }
2092
Bram Moolenaar0c34d562022-11-18 14:07:20 +00002093 return set_leftcol((colnr_T)leftcol);
Christopher Plewright44c22092022-11-15 17:43:36 +00002094}
2095
2096/*
LemonBoyc27747e2022-05-07 12:25:40 +01002097 * Mouse scroll wheel: Default action is to scroll mouse_vert_step lines (or
Christopher Plewright44c22092022-11-15 17:43:36 +00002098 * mouse_hor_step, depending on the scroll direction), or one page when Shift
2099 * or Ctrl is used.
2100 * Direction is indicated by "cap->arg":
2101 * K_MOUSEUP - MSCR_UP
2102 * K_MOUSEDOWN - MSCR_DOWN
2103 * K_MOUSELEFT - MSCR_LEFT
2104 * K_MOUSERIGHT - MSCR_RIGHT
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002105 */
2106 void
Christopher Plewright696d0a82022-11-18 17:53:34 +00002107nv_mousescroll(cmdarg_T *cap)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002108{
Christopher Plewright696d0a82022-11-18 17:53:34 +00002109 win_T *old_curwin = curwin;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002110
2111 if (mouse_row >= 0 && mouse_col >= 0)
2112 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002113 // Find the window at the mouse pointer coordinates.
2114 int row = mouse_row;
2115 int col = mouse_col;
2116 win_T *wp = mouse_find_win(&row, &col, FIND_POPUP);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002117 if (wp == NULL)
2118 return;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002119#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002120 if (WIN_IS_POPUP(wp) && !wp->w_has_scrollbar)
Christopher Plewright696d0a82022-11-18 17:53:34 +00002121 // cannot scroll this popup window
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002122 return;
2123#endif
Christopher Plewright696d0a82022-11-18 17:53:34 +00002124 // NOTE: Must restore "curwin" to "old_curwin" before returning!
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002125 curwin = wp;
2126 curbuf = curwin->w_buffer;
2127 }
Christopher Plewright44c22092022-11-15 17:43:36 +00002128
Christopher Plewright696d0a82022-11-18 17:53:34 +00002129 int shift_or_ctrl = mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL);
2130
2131#ifdef FEAT_TERMINAL
Christopher Plewright44c22092022-11-15 17:43:36 +00002132 if (term_use_loop())
2133 // This window is a terminal window, send the mouse event there.
2134 // Set "typed" to FALSE to avoid an endless loop.
2135 send_keys_to_term(curbuf->b_term, cap->cmdchar, mod_mask, FALSE);
2136 else
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002137#endif
Christopher Plewright696d0a82022-11-18 17:53:34 +00002138 if (cap->arg == MSCR_UP || cap->arg == MSCR_DOWN)
2139 {
2140 // Vertical scrolling
2141 if (!(State & MODE_INSERT) && (mouse_vert_step < 0 || shift_or_ctrl))
2142 {
2143 // whole page up or down
2144 onepage(cap->arg == MSCR_UP ? FORWARD : BACKWARD, 1L);
Christopher Plewright44c22092022-11-15 17:43:36 +00002145 }
2146 else
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002147 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002148 if (mouse_vert_step < 0 || shift_or_ctrl)
2149 {
2150 // whole page up or down
2151 cap->count1 = (long)(curwin->w_botline - curwin->w_topline);
2152 }
2153 // Don't scroll more than half the window height.
2154 else if (curwin->w_height < mouse_vert_step * 2)
2155 {
2156 cap->count1 = curwin->w_height / 2;
2157 if (cap->count1 == 0)
2158 cap->count1 = 1;
2159 }
2160 else
2161 {
2162 cap->count1 = mouse_vert_step;
2163 }
2164 cap->count0 = cap->count1;
2165 nv_scroll_line(cap);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002166 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002167
2168#ifdef FEAT_PROP_POPUP
2169 if (WIN_IS_POPUP(curwin))
2170 popup_set_firstline(curwin);
2171#endif
2172 }
2173 else
2174 {
2175 // Horizontal scrolling
2176 long step = (mouse_hor_step < 0 || shift_or_ctrl)
2177 ? curwin->w_width : mouse_hor_step;
2178 long leftcol = curwin->w_leftcol
2179 + (cap->arg == MSCR_RIGHT ? -step : step);
2180 if (leftcol < 0)
2181 leftcol = 0;
2182 do_mousescroll_horiz((long_u)leftcol);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002183 }
Christopher Plewright44c22092022-11-15 17:43:36 +00002184
Christopher Plewright696d0a82022-11-18 17:53:34 +00002185#ifdef FEAT_SYN_HL
2186 if (curwin != old_curwin && curwin->w_p_cul)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002187 redraw_for_cursorline(curwin);
Christopher Plewright696d0a82022-11-18 17:53:34 +00002188#endif
LemonBoy66e13ae2022-04-21 22:52:11 +01002189 may_trigger_winscrolled();
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002190
2191 curwin->w_redr_status = TRUE;
2192
2193 curwin = old_curwin;
2194 curbuf = curwin->w_buffer;
2195}
2196
2197/*
2198 * Mouse clicks and drags.
2199 */
2200 void
2201nv_mouse(cmdarg_T *cap)
2202{
2203 (void)do_mouse(cap->oap, cap->cmdchar, BACKWARD, cap->count1, 0);
2204}
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002205
Bram Moolenaar85eee5b2021-06-03 20:34:57 +02002206static int held_button = MOUSE_RELEASE;
2207
2208 void
2209reset_held_button()
2210{
2211 held_button = MOUSE_RELEASE;
2212}
2213
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002214/*
2215 * Check if typebuf 'tp' contains a terminal mouse code and returns the
2216 * modifiers found in typebuf in 'modifiers'.
2217 */
2218 int
2219check_termcode_mouse(
2220 char_u *tp,
2221 int *slen,
2222 char_u *key_name,
2223 char_u *modifiers_start,
2224 int idx,
2225 int *modifiers)
2226{
2227 int j;
2228 char_u *p;
Christopher Plewright696d0a82022-11-18 17:53:34 +00002229#if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002230 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
2231 char_u bytes[6];
2232 int num_bytes;
Christopher Plewright696d0a82022-11-18 17:53:34 +00002233#endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002234 int mouse_code = 0; // init for GCC
2235 int is_click, is_drag;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002236 int is_release, release_is_ambiguous;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002237 int wheel_code = 0;
2238 int current_button;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002239 static int orig_num_clicks = 1;
2240 static int orig_mouse_code = 0x0;
Christopher Plewright696d0a82022-11-18 17:53:34 +00002241#ifdef CHECK_DOUBLE_CLICK
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002242 static int orig_mouse_col = 0;
2243 static int orig_mouse_row = 0;
2244 static struct timeval orig_mouse_time = {0, 0};
2245 // time of previous mouse click
2246 struct timeval mouse_time; // time of current mouse click
2247 long timediff; // elapsed time in msec
Christopher Plewright696d0a82022-11-18 17:53:34 +00002248#endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002249
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002250 is_click = is_drag = is_release = release_is_ambiguous = FALSE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002251
Christopher Plewright696d0a82022-11-18 17:53:34 +00002252#if !defined(UNIX) || defined(FEAT_MOUSE_XTERM) || defined(FEAT_GUI) \
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002253 || defined(FEAT_MOUSE_GPM) || defined(FEAT_SYSMOUSE)
2254 if (key_name[0] == KS_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002255# ifdef FEAT_MOUSE_GPM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002256 || key_name[0] == KS_GPM_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002257# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002258 )
2259 {
2260 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002261 * For xterm we get "<t_mouse>scr", where s == encoded button state:
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002262 * 0x20 = left button down
2263 * 0x21 = middle button down
2264 * 0x22 = right button down
2265 * 0x23 = any button release
2266 * 0x60 = button 4 down (scroll wheel down)
2267 * 0x61 = button 5 down (scroll wheel up)
2268 * add 0x04 for SHIFT
2269 * add 0x08 for ALT
2270 * add 0x10 for CTRL
2271 * add 0x20 for mouse drag (0x40 is drag with left button)
2272 * add 0x40 for mouse move (0x80 is move, 0x81 too)
2273 * 0x43 (drag + release) is also move
2274 * c == column + ' ' + 1 == column + 33
2275 * r == row + ' ' + 1 == row + 33
2276 *
Bram Moolenaar13c04632020-07-12 13:47:42 +02002277 * The coordinates are passed on through global variables. Ugly, but
2278 * this avoids trouble with mouse clicks at an unexpected moment and
2279 * allows for mapping them.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002280 */
2281 for (;;)
2282 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002283# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002284 if (gui.in_use)
2285 {
2286 // GUI uses more bits for columns > 223
2287 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 5);
2288 if (num_bytes == -1) // not enough coordinates
2289 return -1;
2290 mouse_code = bytes[0];
2291 mouse_col = 128 * (bytes[1] - ' ' - 1)
2292 + bytes[2] - ' ' - 1;
2293 mouse_row = 128 * (bytes[3] - ' ' - 1)
2294 + bytes[4] - ' ' - 1;
2295 }
2296 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00002297# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002298 {
2299 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 3);
2300 if (num_bytes == -1) // not enough coordinates
2301 return -1;
2302 mouse_code = bytes[0];
2303 mouse_col = bytes[1] - ' ' - 1;
2304 mouse_row = bytes[2] - ' ' - 1;
2305 }
2306 *slen += num_bytes;
2307
Bram Moolenaar13c04632020-07-12 13:47:42 +02002308 // If the following bytes is also a mouse code and it has the same
2309 // code, dump this one and get the next. This makes dragging a
2310 // whole lot faster.
Christopher Plewright696d0a82022-11-18 17:53:34 +00002311# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002312 if (gui.in_use)
2313 j = 3;
2314 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00002315# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002316 j = get_termcode_len(idx);
2317 if (STRNCMP(tp, tp + *slen, (size_t)j) == 0
2318 && tp[*slen + j] == mouse_code
2319 && tp[*slen + j + 1] != NUL
2320 && tp[*slen + j + 2] != NUL
Christopher Plewright696d0a82022-11-18 17:53:34 +00002321# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002322 && (!gui.in_use
2323 || (tp[*slen + j + 3] != NUL
2324 && tp[*slen + j + 4] != NUL))
Christopher Plewright696d0a82022-11-18 17:53:34 +00002325# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002326 )
2327 *slen += j;
2328 else
2329 break;
2330 }
2331 }
2332
2333 if (key_name[0] == KS_URXVT_MOUSE
2334 || key_name[0] == KS_SGR_MOUSE
2335 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2336 {
2337 // URXVT 1015 mouse reporting mode:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002338 // Almost identical to xterm mouse mode, except the values are decimal
2339 // instead of bytes.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002340 //
2341 // \033[%d;%d;%dM
2342 // ^-- row
2343 // ^----- column
2344 // ^-------- code
2345 //
2346 // SGR 1006 mouse reporting mode:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002347 // Almost identical to xterm mouse mode, except the values are decimal
2348 // instead of bytes.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002349 //
2350 // \033[<%d;%d;%dM
2351 // ^-- row
2352 // ^----- column
2353 // ^-------- code
2354 //
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002355 // \033[<%d;%d;%dm : mouse release event
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002356 // ^-- row
2357 // ^----- column
2358 // ^-------- code
2359 p = modifiers_start;
2360 if (p == NULL)
2361 return -1;
2362
2363 mouse_code = getdigits(&p);
2364 if (*p++ != ';')
2365 return -1;
2366
2367 // when mouse reporting is SGR, add 32 to mouse code
2368 if (key_name[0] == KS_SGR_MOUSE
2369 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2370 mouse_code += 32;
2371
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002372 mouse_col = getdigits(&p) - 1;
2373 if (*p++ != ';')
2374 return -1;
2375
2376 mouse_row = getdigits(&p) - 1;
2377
Bram Moolenaar13c04632020-07-12 13:47:42 +02002378 // The modifiers were the mouse coordinates, not the modifier keys
2379 // (alt/shift/ctrl/meta) state.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002380 *modifiers = 0;
2381 }
2382
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002383 if (key_name[0] == KS_SGR_MOUSE
2384 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2385 {
2386 if (key_name[0] == KS_SGR_MOUSE_RELEASE)
Bram Moolenaar13c04632020-07-12 13:47:42 +02002387 {
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002388 is_release = TRUE;
Bram Moolenaar13c04632020-07-12 13:47:42 +02002389 // This is used below to set held_button.
2390 mouse_code |= MOUSE_RELEASE;
2391 }
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002392 }
2393 else
2394 {
2395 release_is_ambiguous = TRUE;
2396 if ((mouse_code & MOUSE_RELEASE) == MOUSE_RELEASE)
2397 is_release = TRUE;
2398 }
2399
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002400 if (key_name[0] == KS_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002401# ifdef FEAT_MOUSE_GPM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002402 || key_name[0] == KS_GPM_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002403# endif
2404# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002405 || key_name[0] == KS_URXVT_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002406# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002407 || key_name[0] == KS_SGR_MOUSE
2408 || key_name[0] == KS_SGR_MOUSE_RELEASE)
2409 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002410# if !defined(MSWIN)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002411 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002412 * Handle old style mouse events.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002413 * Recognize the xterm mouse wheel, but not in the GUI, the
2414 * Linux console with GPM and the MS-DOS or Win32 console
2415 * (multi-clicks use >= 0x60).
2416 */
2417 if (mouse_code >= MOUSEWHEEL_LOW
Christopher Plewright696d0a82022-11-18 17:53:34 +00002418# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002419 && !gui.in_use
Christopher Plewright696d0a82022-11-18 17:53:34 +00002420# endif
2421# ifdef FEAT_MOUSE_GPM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002422 && key_name[0] != KS_GPM_MOUSE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002423# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002424 )
2425 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002426# if defined(UNIX)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002427 if (use_xterm_mouse() > 1 && mouse_code >= 0x80)
2428 // mouse-move event, using MOUSE_DRAG works
2429 mouse_code = MOUSE_DRAG;
2430 else
Christopher Plewright696d0a82022-11-18 17:53:34 +00002431# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002432 // Keep the mouse_code before it's changed, so that we
2433 // remember that it was a mouse wheel click.
2434 wheel_code = mouse_code;
2435 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002436# ifdef FEAT_MOUSE_XTERM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002437 else if (held_button == MOUSE_RELEASE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002438# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002439 && !gui.in_use
Christopher Plewright696d0a82022-11-18 17:53:34 +00002440# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002441 && (mouse_code == 0x23 || mouse_code == 0x24
2442 || mouse_code == 0x40 || mouse_code == 0x41))
2443 {
2444 // Apparently 0x23 and 0x24 are used by rxvt scroll wheel.
2445 // And 0x40 and 0x41 are used by some xterm emulator.
2446 wheel_code = mouse_code - (mouse_code >= 0x40 ? 0x40 : 0x23)
Bram Moolenaard6212b82022-08-03 15:48:33 +01002447 + MOUSEWHEEL_LOW;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002448 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002449# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002450
Christopher Plewright696d0a82022-11-18 17:53:34 +00002451# if defined(UNIX)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002452 else if (use_xterm_mouse() > 1)
2453 {
2454 if (mouse_code & MOUSE_DRAG_XTERM)
2455 mouse_code |= MOUSE_DRAG;
2456 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002457# endif
2458# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002459 else if (!(mouse_code & MOUSE_DRAG & ~MOUSE_CLICK_MASK))
2460 {
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002461 if (is_release)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002462 stop_xterm_trace();
2463 else
2464 start_xterm_trace(mouse_code);
2465 }
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002466# endif
Christopher Plewright696d0a82022-11-18 17:53:34 +00002467# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002468 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002469#endif // !UNIX || FEAT_MOUSE_XTERM
2470#ifdef FEAT_MOUSE_NET
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002471 if (key_name[0] == KS_NETTERM_MOUSE)
2472 {
2473 int mc, mr;
2474
2475 // expect a rather limited sequence like: balancing {
2476 // \033}6,45\r
2477 // '6' is the row, 45 is the column
2478 p = tp + *slen;
2479 mr = getdigits(&p);
2480 if (*p++ != ',')
2481 return -1;
2482 mc = getdigits(&p);
2483 if (*p++ != '\r')
2484 return -1;
2485
2486 mouse_col = mc - 1;
2487 mouse_row = mr - 1;
2488 mouse_code = MOUSE_LEFT;
2489 *slen += (int)(p - (tp + *slen));
2490 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002491#endif // FEAT_MOUSE_NET
2492#ifdef FEAT_MOUSE_JSB
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002493 if (key_name[0] == KS_JSBTERM_MOUSE)
2494 {
2495 int mult, val, iter, button, status;
2496
2497 /*
2498 * JSBTERM Input Model
2499 * \033[0~zw uniq escape sequence
2500 * (L-x) Left button pressed - not pressed x not reporting
2501 * (M-x) Middle button pressed - not pressed x not reporting
2502 * (R-x) Right button pressed - not pressed x not reporting
Bram Moolenaar13c04632020-07-12 13:47:42 +02002503 * (SDmdu) Single , Double click, m: mouse move, d: button down,
2504 * u: button up
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002505 * ### X cursor position padded to 3 digits
2506 * ### Y cursor position padded to 3 digits
2507 * (s-x) SHIFT key pressed - not pressed x not reporting
2508 * (c-x) CTRL key pressed - not pressed x not reporting
2509 * \033\\ terminating sequence
2510 */
2511 p = tp + *slen;
2512 button = mouse_code = 0;
2513 switch (*p++)
2514 {
2515 case 'L': button = 1; break;
2516 case '-': break;
2517 case 'x': break; // ignore sequence
2518 default: return -1; // Unknown Result
2519 }
2520 switch (*p++)
2521 {
2522 case 'M': button |= 2; break;
2523 case '-': break;
2524 case 'x': break; // ignore sequence
2525 default: return -1; // Unknown Result
2526 }
2527 switch (*p++)
2528 {
2529 case 'R': button |= 4; break;
2530 case '-': break;
2531 case 'x': break; // ignore sequence
2532 default: return -1; // Unknown Result
2533 }
2534 status = *p++;
2535 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
2536 mult /= 10, p++)
2537 if (*p >= '0' && *p <= '9')
2538 val += (*p - '0') * mult;
2539 else
2540 return -1;
2541 mouse_col = val;
2542 for (val = 0, mult = 100, iter = 0; iter < 3; iter++,
2543 mult /= 10, p++)
2544 if (*p >= '0' && *p <= '9')
2545 val += (*p - '0') * mult;
2546 else
2547 return -1;
2548 mouse_row = val;
2549 switch (*p++)
2550 {
2551 case 's': button |= 8; break; // SHIFT key Pressed
2552 case '-': break; // Not Pressed
2553 case 'x': break; // Not Reporting
2554 default: return -1; // Unknown Result
2555 }
2556 switch (*p++)
2557 {
2558 case 'c': button |= 16; break; // CTRL key Pressed
2559 case '-': break; // Not Pressed
2560 case 'x': break; // Not Reporting
2561 default: return -1; // Unknown Result
2562 }
2563 if (*p++ != '\033')
2564 return -1;
2565 if (*p++ != '\\')
2566 return -1;
2567 switch (status)
2568 {
2569 case 'D': // Double Click
2570 case 'S': // Single Click
2571 if (button & 1) mouse_code |= MOUSE_LEFT;
2572 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2573 if (button & 4) mouse_code |= MOUSE_RIGHT;
2574 if (button & 8) mouse_code |= MOUSE_SHIFT;
2575 if (button & 16) mouse_code |= MOUSE_CTRL;
2576 break;
2577 case 'm': // Mouse move
2578 if (button & 1) mouse_code |= MOUSE_LEFT;
2579 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2580 if (button & 4) mouse_code |= MOUSE_RIGHT;
2581 if (button & 8) mouse_code |= MOUSE_SHIFT;
2582 if (button & 16) mouse_code |= MOUSE_CTRL;
2583 if ((button & 7) != 0)
2584 {
2585 held_button = mouse_code;
2586 mouse_code |= MOUSE_DRAG;
2587 }
2588 is_drag = TRUE;
2589 showmode();
2590 break;
2591 case 'd': // Button Down
2592 if (button & 1) mouse_code |= MOUSE_LEFT;
2593 if (button & 2) mouse_code |= MOUSE_MIDDLE;
2594 if (button & 4) mouse_code |= MOUSE_RIGHT;
2595 if (button & 8) mouse_code |= MOUSE_SHIFT;
2596 if (button & 16) mouse_code |= MOUSE_CTRL;
2597 break;
2598 case 'u': // Button Up
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002599 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002600 if (button & 1)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002601 mouse_code |= MOUSE_LEFT;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002602 if (button & 2)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002603 mouse_code |= MOUSE_MIDDLE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002604 if (button & 4)
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002605 mouse_code |= MOUSE_RIGHT;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002606 if (button & 8)
2607 mouse_code |= MOUSE_SHIFT;
2608 if (button & 16)
2609 mouse_code |= MOUSE_CTRL;
2610 break;
2611 default: return -1; // Unknown Result
2612 }
2613
2614 *slen += (p - (tp + *slen));
2615 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002616#endif // FEAT_MOUSE_JSB
2617#ifdef FEAT_MOUSE_DEC
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002618 if (key_name[0] == KS_DEC_MOUSE)
2619 {
2620 /*
2621 * The DEC Locator Input Model
2622 * Netterm delivers the code sequence:
2623 * \033[2;4;24;80&w (left button down)
2624 * \033[3;0;24;80&w (left button up)
2625 * \033[6;1;24;80&w (right button down)
2626 * \033[7;0;24;80&w (right button up)
2627 * CSI Pe ; Pb ; Pr ; Pc ; Pp & w
2628 * Pe is the event code
2629 * Pb is the button code
2630 * Pr is the row coordinate
2631 * Pc is the column coordinate
2632 * Pp is the third coordinate (page number)
2633 * Pe, the event code indicates what event caused this report
2634 * The following event codes are defined:
Bram Moolenaar13c04632020-07-12 13:47:42 +02002635 * 0 - request, the terminal received an explicit request for a
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002636 * locator report, but the locator is unavailable
Bram Moolenaar13c04632020-07-12 13:47:42 +02002637 * 1 - request, the terminal received an explicit request for a
Bram Moolenaar6ed545e2022-05-09 20:09:23 +01002638 * locator report
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002639 * 2 - left button down
2640 * 3 - left button up
2641 * 4 - middle button down
2642 * 5 - middle button up
2643 * 6 - right button down
2644 * 7 - right button up
2645 * 8 - fourth button down
2646 * 9 - fourth button up
2647 * 10 - locator outside filter rectangle
Bram Moolenaar13c04632020-07-12 13:47:42 +02002648 * Pb, the button code, ASCII decimal 0-15 indicating which buttons are
2649 * down if any. The state of the four buttons on the locator
2650 * correspond to the low four bits of the decimal value, "1" means
2651 * button depressed
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002652 * 0 - no buttons down,
2653 * 1 - right,
2654 * 2 - middle,
2655 * 4 - left,
2656 * 8 - fourth
2657 * Pr is the row coordinate of the locator position in the page,
Bram Moolenaar13c04632020-07-12 13:47:42 +02002658 * encoded as an ASCII decimal value. If Pr is omitted, the locator
2659 * position is undefined (outside the terminal window for example).
2660 * Pc is the column coordinate of the locator position in the page,
2661 * encoded as an ASCII decimal value. If Pc is omitted, the locator
2662 * position is undefined (outside the terminal window for example).
2663 * Pp is the page coordinate of the locator position encoded as an
2664 * ASCII decimal value. The page coordinate may be omitted if the
2665 * locator is on page one (the default). We ignore it anyway.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002666 */
2667 int Pe, Pb, Pr, Pc;
2668
2669 p = tp + *slen;
2670
2671 // get event status
2672 Pe = getdigits(&p);
2673 if (*p++ != ';')
2674 return -1;
2675
2676 // get button status
2677 Pb = getdigits(&p);
2678 if (*p++ != ';')
2679 return -1;
2680
2681 // get row status
2682 Pr = getdigits(&p);
2683 if (*p++ != ';')
2684 return -1;
2685
2686 // get column status
2687 Pc = getdigits(&p);
2688
2689 // the page parameter is optional
2690 if (*p == ';')
2691 {
2692 p++;
2693 (void)getdigits(&p);
2694 }
2695 if (*p++ != '&')
2696 return -1;
2697 if (*p++ != 'w')
2698 return -1;
2699
2700 mouse_code = 0;
2701 switch (Pe)
2702 {
2703 case 0: return -1; // position request while unavailable
2704 case 1: // a response to a locator position request includes
2705 // the status of all buttons
2706 Pb &= 7; // mask off and ignore fourth button
2707 if (Pb & 4)
2708 mouse_code = MOUSE_LEFT;
2709 if (Pb & 2)
2710 mouse_code = MOUSE_MIDDLE;
2711 if (Pb & 1)
2712 mouse_code = MOUSE_RIGHT;
2713 if (Pb)
2714 {
2715 held_button = mouse_code;
2716 mouse_code |= MOUSE_DRAG;
2717 WantQueryMouse = TRUE;
2718 }
2719 is_drag = TRUE;
2720 showmode();
2721 break;
2722 case 2: mouse_code = MOUSE_LEFT;
2723 WantQueryMouse = TRUE;
2724 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002725 case 3: mouse_code = MOUSE_LEFT;
2726 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002727 break;
2728 case 4: mouse_code = MOUSE_MIDDLE;
2729 WantQueryMouse = TRUE;
2730 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002731 case 5: mouse_code = MOUSE_MIDDLE;
2732 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002733 break;
2734 case 6: mouse_code = MOUSE_RIGHT;
2735 WantQueryMouse = TRUE;
2736 break;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002737 case 7: mouse_code = MOUSE_RIGHT;
2738 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002739 break;
2740 case 8: return -1; // fourth button down
2741 case 9: return -1; // fourth button up
2742 case 10: return -1; // mouse outside of filter rectangle
2743 default: return -1; // should never occur
2744 }
2745
2746 mouse_col = Pc - 1;
2747 mouse_row = Pr - 1;
2748
2749 *slen += (int)(p - (tp + *slen));
2750 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002751#endif // FEAT_MOUSE_DEC
2752#ifdef FEAT_MOUSE_PTERM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002753 if (key_name[0] == KS_PTERM_MOUSE)
2754 {
2755 int button, num_clicks, action;
2756
2757 p = tp + *slen;
2758
2759 action = getdigits(&p);
2760 if (*p++ != ';')
2761 return -1;
2762
2763 mouse_row = getdigits(&p);
2764 if (*p++ != ';')
2765 return -1;
2766 mouse_col = getdigits(&p);
2767 if (*p++ != ';')
2768 return -1;
2769
2770 button = getdigits(&p);
2771 mouse_code = 0;
2772
2773 switch (button)
2774 {
2775 case 4: mouse_code = MOUSE_LEFT; break;
2776 case 1: mouse_code = MOUSE_RIGHT; break;
2777 case 2: mouse_code = MOUSE_MIDDLE; break;
2778 default: return -1;
2779 }
2780
2781 switch (action)
2782 {
2783 case 31: // Initial press
2784 if (*p++ != ';')
2785 return -1;
2786
2787 num_clicks = getdigits(&p); // Not used
2788 break;
2789
2790 case 32: // Release
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002791 is_release = TRUE;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002792 break;
2793
2794 case 33: // Drag
2795 held_button = mouse_code;
2796 mouse_code |= MOUSE_DRAG;
2797 break;
2798
2799 default:
2800 return -1;
2801 }
2802
2803 if (*p++ != 't')
2804 return -1;
2805
2806 *slen += (p - (tp + *slen));
2807 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002808#endif // FEAT_MOUSE_PTERM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002809
2810 // Interpret the mouse code
2811 current_button = (mouse_code & MOUSE_CLICK_MASK);
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002812 if (is_release)
2813 current_button |= MOUSE_RELEASE;
2814
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002815 if (current_button == MOUSE_RELEASE
Christopher Plewright696d0a82022-11-18 17:53:34 +00002816#ifdef FEAT_MOUSE_XTERM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002817 && wheel_code == 0
Christopher Plewright696d0a82022-11-18 17:53:34 +00002818#endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002819 )
2820 {
2821 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002822 * If we get a mouse drag or release event when there is no mouse
2823 * button held down (held_button == MOUSE_RELEASE), produce a K_IGNORE
2824 * below.
2825 * (can happen when you hold down two buttons and then let them go, or
2826 * click in the menu bar, but not on a menu, and drag into the text).
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002827 */
2828 if ((mouse_code & MOUSE_DRAG) == MOUSE_DRAG)
2829 is_drag = TRUE;
2830 current_button = held_button;
2831 }
Bram Moolenaard6212b82022-08-03 15:48:33 +01002832 else
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002833 {
Bram Moolenaard6212b82022-08-03 15:48:33 +01002834 if (wheel_code == 0)
2835 {
Christopher Plewright696d0a82022-11-18 17:53:34 +00002836#ifdef CHECK_DOUBLE_CLICK
2837# ifdef FEAT_MOUSE_GPM
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002838 /*
Bram Moolenaar13c04632020-07-12 13:47:42 +02002839 * Only for Unix, when GUI not active, we handle multi-clicks here, but
2840 * not for GPM mouse events.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002841 */
Christopher Plewright696d0a82022-11-18 17:53:34 +00002842# ifdef FEAT_GUI
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002843 if (key_name[0] != KS_GPM_MOUSE && !gui.in_use)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002844# else
Christopher Plewright696d0a82022-11-18 17:53:34 +00002845 if (key_name[0] != KS_GPM_MOUSE)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002846# endif
Christopher Plewright696d0a82022-11-18 17:53:34 +00002847# else
2848# ifdef FEAT_GUI
2849 if (!gui.in_use)
2850# endif
2851# endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002852 {
2853 /*
2854 * Compute the time elapsed since the previous mouse click.
2855 */
2856 gettimeofday(&mouse_time, NULL);
2857 if (orig_mouse_time.tv_sec == 0)
2858 {
2859 /*
2860 * Avoid computing the difference between mouse_time
2861 * and orig_mouse_time for the first click, as the
2862 * difference would be huge and would cause
2863 * multiplication overflow.
2864 */
2865 timediff = p_mouset;
2866 }
2867 else
Bram Moolenaar85c35022019-11-22 22:21:59 +01002868 timediff = time_diff_ms(&orig_mouse_time, &mouse_time);
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002869 orig_mouse_time = mouse_time;
2870 if (mouse_code == orig_mouse_code
2871 && timediff < p_mouset
2872 && orig_num_clicks != 4
2873 && orig_mouse_col == mouse_col
2874 && orig_mouse_row == mouse_row
2875 && (is_mouse_topline(curwin)
2876 // Double click in tab pages line also works
2877 // when window contents changes.
2878 || (mouse_row == 0 && firstwin->w_winrow > 0))
2879 )
2880 ++orig_num_clicks;
2881 else
2882 orig_num_clicks = 1;
2883 orig_mouse_col = mouse_col;
2884 orig_mouse_row = mouse_row;
2885 set_mouse_topline(curwin);
2886 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00002887# if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM)
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002888 else
2889 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002890# endif
Christopher Plewright696d0a82022-11-18 17:53:34 +00002891#else
2892 orig_num_clicks = NUM_MOUSE_CLICKS(mouse_code);
2893#endif
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002894 is_click = TRUE;
Bram Moolenaard6212b82022-08-03 15:48:33 +01002895 }
2896 orig_mouse_code = mouse_code;
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002897 }
2898 if (!is_drag)
2899 held_button = mouse_code & MOUSE_CLICK_MASK;
2900
2901 /*
2902 * Translate the actual mouse event into a pseudo mouse event.
2903 * First work out what modifiers are to be used.
2904 */
2905 if (orig_mouse_code & MOUSE_SHIFT)
2906 *modifiers |= MOD_MASK_SHIFT;
2907 if (orig_mouse_code & MOUSE_CTRL)
2908 *modifiers |= MOD_MASK_CTRL;
2909 if (orig_mouse_code & MOUSE_ALT)
2910 *modifiers |= MOD_MASK_ALT;
2911 if (orig_num_clicks == 2)
2912 *modifiers |= MOD_MASK_2CLICK;
2913 else if (orig_num_clicks == 3)
2914 *modifiers |= MOD_MASK_3CLICK;
2915 else if (orig_num_clicks == 4)
2916 *modifiers |= MOD_MASK_4CLICK;
2917
Bram Moolenaar13c04632020-07-12 13:47:42 +02002918 // Work out our pseudo mouse event. Note that MOUSE_RELEASE gets added,
2919 // then it's not mouse up/down.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002920 key_name[0] = KS_EXTRA;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002921 if (wheel_code != 0 && (!is_release || release_is_ambiguous))
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002922 {
2923 if (wheel_code & MOUSE_CTRL)
2924 *modifiers |= MOD_MASK_CTRL;
2925 if (wheel_code & MOUSE_ALT)
2926 *modifiers |= MOD_MASK_ALT;
Bram Moolenaard58d4f92020-07-01 15:49:29 +02002927
2928 if (wheel_code & 1 && wheel_code & 2)
2929 key_name[1] = (int)KE_MOUSELEFT;
2930 else if (wheel_code & 2)
2931 key_name[1] = (int)KE_MOUSERIGHT;
2932 else if (wheel_code & 1)
2933 key_name[1] = (int)KE_MOUSEUP;
2934 else
2935 key_name[1] = (int)KE_MOUSEDOWN;
2936
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002937 held_button = MOUSE_RELEASE;
2938 }
2939 else
Bram Moolenaar13c04632020-07-12 13:47:42 +02002940 key_name[1] = get_pseudo_mouse_code(current_button, is_click, is_drag);
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002941
Bram Moolenaar13c04632020-07-12 13:47:42 +02002942
2943 // Make sure the mouse position is valid. Some terminals may return weird
2944 // values.
Bram Moolenaarb8ff5c22019-09-23 21:16:54 +02002945 if (mouse_col >= Columns)
2946 mouse_col = Columns - 1;
2947 if (mouse_row >= Rows)
2948 mouse_row = Rows - 1;
2949
2950 return 0;
2951}
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002952
2953// Functions also used for popup windows.
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002954
2955/*
2956 * Compute the buffer line position from the screen position "rowp" / "colp" in
2957 * window "win".
Bram Moolenaar452143c2020-07-15 17:38:21 +02002958 * "plines_cache" can be NULL (no cache) or an array with "Rows" entries that
2959 * caches the plines_win() result from a previous call. Entry is zero if not
2960 * computed yet. There must be no text or setting changes since the entry is
2961 * put in the cache.
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002962 * Returns TRUE if the position is below the last line.
2963 */
2964 int
2965mouse_comp_pos(
2966 win_T *win,
2967 int *rowp,
2968 int *colp,
2969 linenr_T *lnump,
2970 int *plines_cache)
2971{
2972 int col = *colp;
2973 int row = *rowp;
2974 linenr_T lnum;
2975 int retval = FALSE;
2976 int off;
2977 int count;
2978
2979#ifdef FEAT_RIGHTLEFT
2980 if (win->w_p_rl)
2981 col = win->w_width - 1 - col;
2982#endif
2983
2984 lnum = win->w_topline;
2985
2986 while (row > 0)
2987 {
2988 int cache_idx = lnum - win->w_topline;
2989
Bram Moolenaar452143c2020-07-15 17:38:21 +02002990 // Only "Rows" lines are cached, with folding we'll run out of entries
2991 // and use the slow way.
2992 if (plines_cache != NULL && cache_idx < Rows
2993 && plines_cache[cache_idx] > 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02002994 count = plines_cache[cache_idx];
2995 else
2996 {
2997#ifdef FEAT_DIFF
2998 // Don't include filler lines in "count"
2999 if (win->w_p_diff
3000# ifdef FEAT_FOLDING
3001 && !hasFoldingWin(win, lnum, NULL, NULL, TRUE, NULL)
3002# endif
3003 )
3004 {
3005 if (lnum == win->w_topline)
3006 row -= win->w_topfill;
3007 else
3008 row -= diff_check_fill(win, lnum);
3009 count = plines_win_nofill(win, lnum, TRUE);
3010 }
3011 else
3012#endif
3013 count = plines_win(win, lnum, TRUE);
Bram Moolenaar452143c2020-07-15 17:38:21 +02003014 if (plines_cache != NULL && cache_idx < Rows)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003015 plines_cache[cache_idx] = count;
3016 }
3017 if (count > row)
3018 break; // Position is in this buffer line.
3019#ifdef FEAT_FOLDING
3020 (void)hasFoldingWin(win, lnum, NULL, &lnum, TRUE, NULL);
3021#endif
3022 if (lnum == win->w_buffer->b_ml.ml_line_count)
3023 {
3024 retval = TRUE;
3025 break; // past end of file
3026 }
3027 row -= count;
3028 ++lnum;
3029 }
3030
3031 if (!retval)
3032 {
3033 // Compute the column without wrapping.
3034 off = win_col_off(win) - win_col_off2(win);
3035 if (col < off)
3036 col = off;
3037 col += row * (win->w_width - off);
3038 // add skip column (for long wrapping line)
3039 col += win->w_skipcol;
3040 }
3041
3042 if (!win->w_p_wrap)
3043 col += win->w_leftcol;
3044
3045 // skip line number and fold column in front of the line
3046 col -= win_col_off(win);
Bram Moolenaardbfa7952020-11-02 20:04:22 +01003047 if (col <= 0)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003048 {
3049#ifdef FEAT_NETBEANS_INTG
Bram Moolenaardbfa7952020-11-02 20:04:22 +01003050 // if mouse is clicked on the gutter, then inform the netbeans server
3051 if (*colp < win_col_off(win))
3052 netbeans_gutter_click(lnum);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003053#endif
3054 col = 0;
3055 }
3056
3057 *colp = col;
3058 *rowp = row;
3059 *lnump = lnum;
3060 return retval;
3061}
3062
3063/*
3064 * Find the window at screen position "*rowp" and "*colp". The positions are
3065 * updated to become relative to the top-left of the window.
3066 * When "popup" is FAIL_POPUP and the position is in a popup window then NULL
3067 * is returned. When "popup" is IGNORE_POPUP then do not even check popup
3068 * windows.
3069 * Returns NULL when something is wrong.
3070 */
3071 win_T *
3072mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
3073{
3074 frame_T *fp;
3075 win_T *wp;
3076
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003077#ifdef FEAT_PROP_POPUP
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003078 win_T *pwp = NULL;
3079
3080 if (popup != IGNORE_POPUP)
3081 {
Bram Moolenaarafe45b62019-11-13 22:35:19 +01003082 popup_reset_handled(POPUP_HANDLED_1);
3083 while ((wp = find_next_popup(TRUE, POPUP_HANDLED_1)) != NULL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003084 {
3085 if (*rowp >= wp->w_winrow && *rowp < wp->w_winrow + popup_height(wp)
3086 && *colp >= wp->w_wincol
3087 && *colp < wp->w_wincol + popup_width(wp))
3088 pwp = wp;
3089 }
3090 if (pwp != NULL)
3091 {
3092 if (popup == FAIL_POPUP)
3093 return NULL;
3094 *rowp -= pwp->w_winrow;
3095 *colp -= pwp->w_wincol;
3096 return pwp;
3097 }
3098 }
3099#endif
3100
3101 fp = topframe;
3102 *rowp -= firstwin->w_winrow;
3103 for (;;)
3104 {
3105 if (fp->fr_layout == FR_LEAF)
3106 break;
3107 if (fp->fr_layout == FR_ROW)
3108 {
3109 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3110 {
3111 if (*colp < fp->fr_width)
3112 break;
3113 *colp -= fp->fr_width;
3114 }
3115 }
3116 else // fr_layout == FR_COL
3117 {
3118 for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
3119 {
3120 if (*rowp < fp->fr_height)
3121 break;
3122 *rowp -= fp->fr_height;
3123 }
3124 }
3125 }
3126 // When using a timer that closes a window the window might not actually
3127 // exist.
3128 FOR_ALL_WINDOWS(wp)
3129 if (wp == fp->fr_win)
3130 {
3131#ifdef FEAT_MENU
3132 *rowp -= wp->w_winbar_height;
3133#endif
3134 return wp;
3135 }
3136 return NULL;
3137}
3138
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003139#if defined(NEED_VCOL2COL) || defined(FEAT_BEVAL) || defined(FEAT_PROP_POPUP) \
Bram Moolenaar424da7a2022-03-13 19:08:48 +00003140 || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003141/*
3142 * Convert a virtual (screen) column to a character column.
3143 * The first column is one.
3144 */
3145 int
3146vcol2col(win_T *wp, linenr_T lnum, int vcol)
3147{
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003148 char_u *line;
3149 chartabsize_T cts;
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003150
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003151 // try to advance to the specified column
3152 line = ml_get_buf(wp->w_buffer, lnum, FALSE);
3153 init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
3154 while (cts.cts_vcol < vcol && *cts.cts_ptr != NUL)
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003155 {
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003156 cts.cts_vcol += win_lbr_chartabsize(&cts, NULL);
3157 MB_PTR_ADV(cts.cts_ptr);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003158 }
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003159 clear_chartabsize_arg(&cts);
3160
3161 return (int)(cts.cts_ptr - line);
Bram Moolenaarb20b9e12019-09-21 20:48:04 +02003162}
3163#endif
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003164
3165#if defined(FEAT_EVAL) || defined(PROTO)
Christopher Plewright696d0a82022-11-18 17:53:34 +00003166/*
3167 * "getmousepos()" function.
3168 */
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003169 void
3170f_getmousepos(typval_T *argvars UNUSED, typval_T *rettv)
3171{
3172 dict_T *d;
3173 win_T *wp;
3174 int row = mouse_row;
3175 int col = mouse_col;
3176 varnumber_T winid = 0;
3177 varnumber_T winrow = 0;
3178 varnumber_T wincol = 0;
Bram Moolenaar533870a2022-03-13 15:52:44 +00003179 linenr_T lnum = 0;
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003180 varnumber_T column = 0;
3181
Bram Moolenaar93a10962022-06-16 11:42:09 +01003182 if (rettv_dict_alloc(rettv) == FAIL)
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003183 return;
3184 d = rettv->vval.v_dict;
3185
3186 dict_add_number(d, "screenrow", (varnumber_T)mouse_row + 1);
3187 dict_add_number(d, "screencol", (varnumber_T)mouse_col + 1);
3188
3189 wp = mouse_find_win(&row, &col, FIND_POPUP);
3190 if (wp != NULL)
3191 {
3192 int top_off = 0;
3193 int left_off = 0;
3194 int height = wp->w_height + wp->w_status_height;
3195
Christopher Plewright696d0a82022-11-18 17:53:34 +00003196# ifdef FEAT_PROP_POPUP
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003197 if (WIN_IS_POPUP(wp))
3198 {
3199 top_off = popup_top_extra(wp);
3200 left_off = popup_left_extra(wp);
3201 height = popup_height(wp);
3202 }
Christopher Plewright696d0a82022-11-18 17:53:34 +00003203# endif
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003204 if (row < height)
3205 {
3206 winid = wp->w_id;
3207 winrow = row + 1;
3208 wincol = col + 1;
3209 row -= top_off;
3210 col -= left_off;
3211 if (row >= 0 && row < wp->w_height && col >= 0 && col < wp->w_width)
3212 {
Sean Dewar10792fe2022-03-15 09:46:54 +00003213 (void)mouse_comp_pos(wp, &row, &col, &lnum, NULL);
3214 col = vcol2col(wp, lnum, col);
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003215 column = col + 1;
3216 }
3217 }
3218 }
3219 dict_add_number(d, "winid", winid);
3220 dict_add_number(d, "winrow", winrow);
3221 dict_add_number(d, "wincol", wincol);
Bram Moolenaar533870a2022-03-13 15:52:44 +00003222 dict_add_number(d, "line", (varnumber_T)lnum);
Bram Moolenaardb3a2052019-11-16 18:22:41 +01003223 dict_add_number(d, "column", column);
3224}
3225#endif