Lines Matching refs:txtcol
1079 int txtcol; in fold_line() local
1241 txtcol = col; // remember where text starts in fold_line()
1251 col -= txtcol; in fold_line()
1255 - (wp->w_p_rl ? txtcol : 0) in fold_line()
1311 if (wp->w_old_cursor_fcol + txtcol < (colnr_T)wp->w_width) in fold_line()
1314 && wp->w_old_cursor_lcol + txtcol in fold_line()
1318 len = wp->w_width - txtcol; in fold_line()
1319 RL_MEMSET(wp->w_old_cursor_fcol + txtcol, HL_ATTR(HLF_V), in fold_line()
1326 RL_MEMSET(txtcol, HL_ATTR(HLF_V), wp->w_width - txtcol); in fold_line()
1337 int old_txtcol = txtcol; in fold_line()
1341 txtcol += j; in fold_line()
1343 txtcol -= wp->w_skipcol; in fold_line()
1345 txtcol -= wp->w_leftcol; in fold_line()
1346 if (txtcol >= 0 && txtcol < wp->w_width) in fold_line()
1347 ScreenAttrs[off + txtcol] = hl_combine_attr( in fold_line()
1348 ScreenAttrs[off + txtcol], HL_ATTR(HLF_MC)); in fold_line()
1349 txtcol = old_txtcol; in fold_line()
1357 txtcol += wp->w_virtcol; in fold_line()
1359 txtcol -= wp->w_skipcol; in fold_line()
1361 txtcol -= wp->w_leftcol; in fold_line()
1362 if (txtcol >= 0 && txtcol < wp->w_width) in fold_line()
1363 ScreenAttrs[off + txtcol] = hl_combine_attr( in fold_line()
1364 ScreenAttrs[off + txtcol], HL_ATTR(HLF_CUC)); in fold_line()