Home
last modified time | relevance | path

Searched refs:ccol (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/runtime/indent/
H A Dtex.vim190 let ccol = 1
191 while cline[ccol] =~ '\s'
192 let ccol += 1
196 if synIDattr(synID(v:lnum, ccol, 1), "name") == "texZone"
264 if cline =~ '^\s*\\\?[\]}]' && s:CheckPairedIsLastCharacter(v:lnum, ccol)
H A Dhtml.vim749 let ccol = match(getline(lnum), '\*/')
750 if ccol < 0
754 call cursor(lnum, ccol + 1)
/vim-8.2.3635/src/
H A Dmove.c1232 colnr_T scol = 0, ccol = 0, ecol = 0; in textpos2screenpos() local
1244 getvcol(wp, pos, &scol, &ccol, &ecol); in textpos2screenpos()
1268 row = rowoff = scol = ccol = ecol = 0; in textpos2screenpos()
1272 *ccolp = ccol + coloff; in textpos2screenpos()
1288 int scol = 0, ccol = 0, ecol = 0; in f_screenpos() local
1307 textpos2screenpos(wp, &pos, &row, &scol, &ccol, &ecol); in f_screenpos()
1311 dict_add_number(dict, "curscol", ccol); in f_screenpos()
H A Dregexp.c1438 colnr_T ccol = start_col; in match_with_backref() local
1468 len = end_col - ccol; in match_with_backref()
1470 len = (int)STRLEN(p + ccol); in match_with_backref()
1472 if (cstrncmp(p + ccol, rex.input, &len) != 0) in match_with_backref()
1486 ccol = 0; in match_with_backref()