Lines Matching refs:vcol
38 static int in_win_border(win_T *wp, colnr_T vcol);
1191 in_win_border(win_T *wp, colnr_T vcol) in in_win_border() argument
1199 if ((int)vcol < width1 - 1) in in_win_border()
1201 if ((int)vcol == width1 - 1) in in_win_border()
1206 return ((vcol - width1) % width2 == width2 - 1); in in_win_border()
1225 colnr_T vcol; in getvcol() local
1237 vcol = 0; in getvcol()
1278 incr = tabstop_padding(vcol, ts, vts); in getvcol()
1280 incr = ts - (vcol % ts); in getvcol()
1297 && in_win_border(wp, vcol)) in getvcol()
1310 vcol += incr; in getvcol()
1320 incr = win_lbr_chartabsize(wp, line, ptr, vcol, &head); in getvcol()
1331 vcol += incr; in getvcol()
1336 *start = vcol + head; in getvcol()
1338 *end = vcol + incr - 1; in getvcol()
1348 *cursor = vcol + incr - 1; // cursor at end in getvcol()
1350 *cursor = vcol + head; // cursor at start in getvcol()
1361 colnr_T vcol; in getvcol_nolist() local
1365 getvvcol(curwin, posp, NULL, &vcol, NULL); in getvcol_nolist()
1367 getvcol(curwin, posp, NULL, &vcol, NULL); in getvcol_nolist()
1369 return vcol; in getvcol_nolist()