Home
last modified time | relevance | path

Searched refs:mpos (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/runtime/autoload/
H A Dxmlcomplete.vim433 let mpos=0
435 while (mpos > -1)
436 let mpos=matchend(line,tagpat)
437 if mpos > -1
438 let b:TagCol=b:TagCol+mpos
445 let lineend=lineend-mpos
446 let line=strpart(line,mpos,lineend)
/vim-8.2.3635/src/
H A Dmouse.c128 get_fpos_of_mouse(pos_T *mpos) in get_fpos_of_mouse() argument
151 if (mouse_comp_pos(curwin, &row, &col, &mpos->lnum, NULL)) in get_fpos_of_mouse()
154 mpos->col = vcol2col(wp, mpos->lnum, col); in get_fpos_of_mouse()
156 if (mpos->col > 0) in get_fpos_of_mouse()
157 --mpos->col; in get_fpos_of_mouse()
158 mpos->coladd = 0; in get_fpos_of_mouse()
H A Dregexp_nfa.c7308 struct multipos *mpos = &subs.synt.list.multi[i]; in nfa_regtry() local
7311 if (mpos->start_lnum >= 0 in nfa_regtry()
7312 && mpos->start_lnum == mpos->end_lnum in nfa_regtry()
7313 && mpos->end_col >= mpos->start_col) in nfa_regtry()
7315 vim_strnsave(reg_getline(mpos->start_lnum) in nfa_regtry()
7316 + mpos->start_col, in nfa_regtry()
7317 mpos->end_col - mpos->start_col); in nfa_regtry()
H A Dsearch.c2785 pos_T mpos; in showmatch() local
2830 mpos = *lpos; // save the pos, update_screen() may change it in showmatch()
2847 curwin->w_cursor = mpos; // move to matching char in showmatch()
/vim-8.2.3635/runtime/doc/
H A Dif_tcl.txt385 array set mpos [$buf mark "a"]
386 < "mpos(column)" and "mpos(row)" now contain the position of the mark.