Searched refs:nextline (Results 1 – 6 of 6) sorted by relevance
33 let nextline = getline(v:lnum + 1)34 if (line =~ '^.\+$') && (nextline =~ '^=\+$') && s:NotCodeBlock(v:lnum + 1)38 if (line =~ '^.\+$') && (nextline =~ '^-\+$') && s:NotCodeBlock(v:lnum + 1)50 let nextline = getline(a:lnum + 1)51 if nextline =~# '^=\+\s*$'53 elseif nextline =~# '^-\+\s*$'
1259 cookie.nextline = NULL; in do_source()1504 vim_free(cookie.nextline); in do_source()1778 else if (sp->nextline == NULL) in getsourceline()1782 line = sp->nextline; in getsourceline()1783 sp->nextline = NULL; in getsourceline()1807 sp->nextline = get_one_sourceline(sp); in getsourceline()1808 if (sp->nextline != NULL in getsourceline()1829 vim_free(sp->nextline); in getsourceline()1830 sp->nextline = get_one_sourceline(sp); in getsourceline()1831 if (sp->nextline == NULL) in getsourceline()[all …]
513 nextline[SPWORDLEN] = NUL; in win_line()517 spell_cat_line(nextline + SPWORDLEN, line, SPWORDLEN); in win_line()709 if (nextline[SPWORDLEN] == NUL) in win_line()723 mch_memmove(nextline, line, (size_t)v); in win_line()724 STRMOVE(nextline + v, nextline + SPWORDLEN); in win_line()731 mch_memmove(nextline, line + nextlinecol, SPWORDLEN); in win_line()1911 p = nextline + (prev_ptr - line) - nextlinecol; in win_line()1933 && (p - nextline) + len > nextline_idx) in win_line()1938 checked_col = (int)((p - nextline) in win_line()1949 && (p - nextline) + cap_col >= nextline_idx) in win_line()[all …]
1372 if (*sp->nextline == NUL) in get_split_sourceline()1374 p = vim_strchr(sp->nextline, '\n'); in get_split_sourceline()1377 line = vim_strsave(sp->nextline); in get_split_sourceline()1378 sp->nextline += STRLEN(sp->nextline); in get_split_sourceline()1382 line = vim_strnsave(sp->nextline, p - sp->nextline); in get_split_sourceline()1383 sp->nextline = p + 1; in get_split_sourceline()1762 cookie.nextline = iptr->isn_arg.string; in exec_instructions()
9849 goto nextline; in compile_def_function()9883 goto nextline; in compile_def_function()9936 goto nextline; in compile_def_function()10170 nextline: in compile_def_function()
4406 char_u *nextline; // if not NULL: line that was read ahead member