Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dsearch.c624 colnr_T matchcol; in searchit() local
823 matchcol += in searchit()
826 ++matchcol; in searchit()
836 + matchcol); in searchit()
838 ++matchcol; in searchit()
846 matchcol, in searchit()
933 matchcol += in searchit()
936 ++matchcol; in searchit()
948 matchcol += in searchit()
951 ++matchcol; in searchit()
[all …]
H A Dmatch.c425 colnr_T matchcol; in next_search_hl() local
467 matchcol = 0; in next_search_hl()
474 matchcol = shl->rm.startpos[0].col; in next_search_hl()
475 ml = ml_get_buf(shl->buf, lnum, FALSE) + matchcol; in next_search_hl()
478 ++matchcol; in next_search_hl()
483 matchcol += mb_ptr2len(ml); in next_search_hl()
485 ++matchcol; in next_search_hl()
488 matchcol = shl->rm.endpos[0].col; in next_search_hl()
501 matchcol, in next_search_hl()
528 nmatched = next_search_hl_pos(shl, lnum, &(cur->pos), matchcol); in next_search_hl()
H A Dex_cmds.c4004 colnr_T matchcol; in ex_substitute() local
4068 matchcol = 0; in ex_substitute()
4123 if (matchcol == prev_matchcol in ex_substitute()
4125 && matchcol == regmatch.endpos[0].col) in ex_substitute()
4135 matchcol += mb_ptr2len(sub_firstline + matchcol); in ex_substitute()
4137 ++matchcol; in ex_substitute()
4144 matchcol = regmatch.endpos[0].col; in ex_substitute()
4145 prev_matchcol = matchcol; in ex_substitute()
4637 matchcol, NULL, NULL)) == 0 in ex_substitute()
4650 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; in ex_substitute()
[all …]
H A Dsyntax.c2798 colnr_T matchcol; in find_endpos() local
2851 matchcol = startpos->col; // start looking for a match at sstart in find_endpos()
2866 int lc_col = matchcol; in find_endpos()
2906 int lc_col = matchcol - spp_skip->sp_offsets[SPO_LC_OFF]; in find_endpos()
2933 if (pos.col <= matchcol) in find_endpos()
2934 ++matchcol; in find_endpos()
2936 matchcol = pos.col; in find_endpos()
2939 for (matchcol = regmatch.endpos[0].col; in find_endpos()
2940 matchcol < line_len && matchcol < pos.col; in find_endpos()
2941 ++matchcol) in find_endpos()
[all …]