Home
last modified time | relevance | path

Searched refs:win_linetabsize (Results 1 – 10 of 10) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dcharset.pro20 int win_linetabsize(win_T *wp, char_u *line, colnr_T len);
/vim-8.2.3635/src/
H A Dbeval.c50 if (col <= win_linetabsize(wp, lbuf, (colnr_T)MAXCOL)) in find_word_under_cursor()
H A Dcharset.c814 win_linetabsize(win_T *wp, char_u *line, colnr_T len) in win_linetabsize() function
H A Dmisc1.c400 col = win_linetabsize(wp, s, (colnr_T)MAXCOL); in plines_win_nofold()
H A Dregexp.c1336 cols = win_linetabsize(wp, rex.line, (colnr_T)(rex.input - rex.line)); in reg_match_visual()
H A Dregexp_bt.c3435 if (!re_num_cmp((long_u)win_linetabsize( in regmatch()
H A Dpopupwin.c1328 len = win_linetabsize(wp, ml_get_buf(wp->w_buffer, lnum, FALSE), in popup_adjust_position()
H A Dregexp_nfa.c6824 (long_u)win_linetabsize(wp, rex.line, col) + 1); in nfa_regmatch()
/vim-8.2.3635/runtime/doc/
H A Dtodo.txt1326 - Using win_linetabsize() can still be slow. Cache the result, store col and
1353 be to cache the result of win_linetabsize(col), storing both col and vcol,
1354 and use them to decide whether win_linetabsize() needs to be called. Reset
H A Dversion6.txt7394 Solution: In win_linetabsize() check for a MAXCOL length argument. (Jim