Lines Matching refs:start_col
187 colnr_T start_col, in tabstop_fromto() argument
194 int spaces = end_col - start_col; in tabstop_fromto()
206 initspc = ts - (start_col % ts); in tabstop_fromto()
225 if (tabcol > start_col) in tabstop_fromto()
227 padding = (int)(tabcol - start_col); in tabstop_fromto()
232 padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]); in tabstop_fromto()
1230 int start_col; in change_indent() local
1251 start_col = curwin->w_cursor.col; in change_indent()
1266 start_col = -1; in change_indent()
1374 if (REPLACE_NORMAL(State) && start_col >= 0) in change_indent()
1376 while (start_col > (int)curwin->w_cursor.col) in change_indent()
1379 --start_col; in change_indent()
1381 while (start_col < (int)curwin->w_cursor.col || replaced) in change_indent()
1389 ++start_col; in change_indent()
1583 long start_col = 0; // For start of white-space string in ex_retab() local
1650 start_col = col; in ex_retab()
1703 new_line = alloc(old_len - col + start_col + len + 1); in ex_retab()
1706 if (start_col > 0) in ex_retab()
1707 mch_memmove(new_line, ptr, (size_t)start_col); in ex_retab()
1708 mch_memmove(new_line + start_col + len, in ex_retab()
1710 ptr = new_line + start_col; in ex_retab()
1720 col = start_col + len; in ex_retab()