Home
last modified time | relevance | path

Searched refs:posmatch (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dmatch.c355 posmatch_T *posmatch, // match positions in next_search_hl_pos() argument
361 for (i = posmatch->cur; i < MAXPOSMATCH; i++) in next_search_hl_pos()
363 llpos_T *pos = &posmatch->pos[i]; in next_search_hl_pos()
375 if (pos->col < posmatch->pos[found].col) in next_search_hl_pos()
379 *pos = posmatch->pos[found]; in next_search_hl_pos()
380 posmatch->pos[found] = tmp; in next_search_hl_pos()
387 posmatch->cur = 0; in next_search_hl_pos()
390 colnr_T start = posmatch->pos[found].col == 0 in next_search_hl_pos()
391 ? 0 : posmatch->pos[found].col - 1; in next_search_hl_pos()
392 colnr_T end = posmatch->pos[found].col == 0 in next_search_hl_pos()
[all …]
H A Dstructs.h3334 typedef struct posmatch posmatch_T;
3335 struct posmatch struct