Searched refs:midx (Results 1 – 2 of 2) sorted by relevance
| /vim-8.2.3635/runtime/indent/ |
| H A D | lua.vim | 39 …let midx = match(prevline, '^\s*\%(if\>\|for\>\|while\>\|repeat\>\|else\>\|elseif\>\|do\>\|then\>\… 40 if midx == -1 41 let midx = match(prevline, '{\s*$') 42 if midx == -1 43 let midx = match(prevline, '\<function\>\s*\%(\k\|[.:]\)\{-}\s*(') 47 if midx != -1 50 …if synIDattr(synID(prevlnum, midx + 1, 1), "name") != "luaComment" && prevline !~ '\<end\>\|\<unti… 57 let midx = match(getline(v:lnum), '^\s*\%(end\>\|else\>\|elseif\>\|until\>\|}\)') 58 if midx != -1 && synIDattr(synID(v:lnum, midx + 1, 1), "name") != "luaComment"
|
| /vim-8.2.3635/src/ |
| H A D | quickfix.c | 925 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_f() 929 c = *rmp->endp[midx]; in qf_parse_fmt_f() 1028 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_m() 1030 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_m() 1065 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_p() 1068 for (match_ptr = rmp->startp[midx]; match_ptr != rmp->endp[midx]; in qf_parse_fmt_p() 1106 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_s() 1108 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_s() 1128 if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL) in qf_parse_fmt_o() 1130 len = (int)(rmp->endp[midx] - rmp->startp[midx]); in qf_parse_fmt_o() [all …]
|