Home
last modified time | relevance | path

Searched refs:mouse_col (Results 1 – 24 of 24) sorted by relevance

/vim-8.2.3635/src/
H A Dmouse.c132 int col = mouse_col; in get_fpos_of_mouse()
471 && mouse_col < Columns) in do_mouse()
1086 col = mouse_col; in ins_mousescroll()
1259 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF) in get_pseudo_mouse_code()
1261 if (mouse_col < 0) in get_pseudo_mouse_code()
1262 mouse_col = 0; in get_pseudo_mouse_code()
1518 int col = mouse_col; in jump_to_mouse()
2017 col = mouse_col; in nv_mousescroll()
2381 mouse_col = mc - 1; in check_termcode_mouse()
2436 mouse_col = val; in check_termcode_mouse()
[all …]
H A Dpopupwin.c149 wp->w_popup_mouse_mincol = mouse_col; in set_mousemoved_values()
150 wp->w_popup_mouse_maxcol = mouse_col; in set_mousemoved_values()
228 drag_start_col = mouse_col; in popup_start_drag()
271 int width_inc = mouse_col - drag_start_col; in popup_drag()
282 drag_start_col = mouse_col; in popup_drag()
2015 wp->w_wantcol = mouse_col + 1; in popup_create()
2317 || mouse_col < wp->w_popup_mouse_mincol in check_mouse_moved()
2318 || mouse_col > wp->w_popup_mouse_maxcol)) in check_mouse_moved()
2334 int col = mouse_col; in popup_handle_mouse_moved()
2359 int col = mouse_col; in filter_handle_drag()
[all …]
H A Dpopupmenu.c1165 if (Columns - mouse_col >= pum_base_width in pum_position_at_mouse()
1166 || Columns - mouse_col > min_width) in pum_position_at_mouse()
1168 pum_col = mouse_col; in pum_position_at_mouse()
1603 mouse_col = curwin->w_wincol + curwin->w_wcol; in pum_make_popup()
H A Dclipboard.c505 clip_start_selection(mouse_col, mouse_row, FALSE); in clip_modeless()
506 clip_process_selection(button, mouse_col, mouse_row, repeat); in clip_modeless()
509 clip_start_selection(mouse_col, mouse_row, repeat); in clip_modeless()
515 clip_process_selection(button, mouse_col, mouse_row, repeat); in clip_modeless()
518 clip_process_selection(MOUSE_RELEASE, mouse_col, mouse_row, FALSE); in clip_modeless()
H A Dbeval.c151 int col = mouse_col; in get_beval_info()
H A Dgetchar.c1666 mouse_col = old_mouse_col; in vgetc()
2105 int col = mouse_col; in getchar_common()
2881 old_mouse_col = mouse_col; in vungetc()
H A Dterminal.c1264 int col = mouse_col - curwin->w_wincol; in term_send_mouse()
1316 save_mouse_col = mouse_col; in term_mouse_click()
1318 mouse_col = enter_mouse_col; in term_mouse_click()
1321 mouse_col = save_mouse_col; in term_mouse_click()
2178 int col = mouse_col; in send_keys_to_term()
2487 enter_mouse_col = mouse_col; in term_win_entered()
H A Dtesting.c1308 mouse_col = (time_t)tv_get_number(&argvars[1]) - 1; in f_test_setmouse()
H A Dglobals.h558 EXTERN int mouse_col; variable
H A Dos_unix.c7755 prev_col = mouse_col; in do_xterm_trace()
7766 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) in do_xterm_trace()
H A Dnetbeans.c2836 int col = mouse_col - curwin->w_wincol in netbeans_button_release()
H A Dinsexpand.c1871 int col = mouse_col; in ins_compl_prep()
H A Dex_getln.c1315 && mouse_col < ccline.cmdspos % Columns + i) in cmdline_left_right_mouse()
H A Dterm.c5625 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; in check_termcode()
H A Dgui_w32.c4344 mouse_col = wp->w_wincol; in _OnMouseWheel()
/vim-8.2.3635/src/libvterm/src/
H A Dmouse.c58 if(col == state->mouse_col && row == state->mouse_row) in vterm_mouse_move()
61 state->mouse_col = col; in vterm_mouse_move()
93 output_mouse(state, button-1, pressed, mod, state->mouse_col, state->mouse_row); in vterm_mouse_button()
96 output_mouse(state, button-4 + 0x40, pressed, mod, state->mouse_col, state->mouse_row); in vterm_mouse_button()
H A Dvterm_internal.h99 int mouse_col, mouse_row; member
H A Dstate.c73 state->mouse_col = 0; in vterm_state_new()
1978 mousestate->pos.col = state->mouse_col; in vterm_state_get_mousestate()
/vim-8.2.3635/src/testdir/
H A Dtest_functions.vim1800 let v:mouse_col = 9
1806 call assert_equal(3, v:mouse_col)
/vim-8.2.3635/runtime/autoload/
H A Dnetrw.vim5983 " call Decho("v:mouse_col =".v:mouse_col." col=".col(".")." wincol =".wincol()." winwidth =…
5994 " call Decho("v:mouse_col=".v:mouse_col." col#".col('.')." virtcol#".virtcol('.')." col($)#".col(…
5995 if v:mouse_col > virtcol('.')
/vim-8.2.3635/runtime/doc/
H A Dtags7976 mouse_col-variable eval.txt /*mouse_col-variable*
9983 v:mouse_col eval.txt /*v:mouse_col*
H A Deval.txt2122 *v:mouse_col* *mouse_col-variable*
2123 v:mouse_col Column number for a mouse click obtained with |getchar()|.
5500 returned. The position can then be found in |v:mouse_col|,
5509 exe "normal " . v:mouse_col . "|"
6044 |v:mouse_col| and |v:mouse_winid| also provide these values.
H A Dversion7.txt4036 Solution: Add v:mouse_win, v:mouse_lnum and v:mouse_col.
H A Dversion8.txt40173 Solution: Set v:mouse_col and v:mouse_lnum. (closes #5171)