Searched refs:theline (Results 1 – 5 of 5) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | cindent.c | 2041 char_u *theline; in get_c_indent() local 2270 else if (theline[0] == '*') in get_c_indent() 2369 if (theline[0] == ')') in get_c_indent() 2451 if (theline[0] != ')') in get_c_indent() 2564 if (cin_iscomment(theline)) in get_c_indent() 2629 if (theline[0] == '}') in get_c_indent() 3267 if (theline[0] == '{') in get_c_indent() 3451 if (theline[0] == '{') in get_c_indent() 3563 if (theline[0] == '{') in get_c_indent() 3632 if (theline[0] == '{') in get_c_indent() [all …]
|
| H A D | userfunc.c | 217 char_u *theline; in get_function_args() local 221 if (theline == NULL) in get_function_args() 697 char_u *theline; in get_function_body() local 733 if (theline == NULL) in get_function_body() 762 || (is_heredoc && skipwhite(theline) == theline) in get_function_body() 767 p = theline; in get_function_body() 769 p = skipwhite(theline) == theline in get_function_body() 770 ? theline : theline + STRLEN(heredoc_trimmed); in get_function_body() 792 theline += STRLEN(theline); // skip the "EOF" in get_function_body() 983 skipwhite(theline) - theline); in get_function_body() [all …]
|
| H A D | evalvars.c | 580 char_u *theline; in heredoc_get() local 654 theline = eap->getline(NUL, eap->cookie, 0, FALSE); in heredoc_get() 655 if (theline == NULL) in heredoc_get() 666 if (STRCMP(marker, theline + mi) == 0) in heredoc_get() 668 vim_free(theline); in heredoc_get() 672 if (text_indent_len == -1 && *theline != NUL) in heredoc_get() 675 p = theline; in heredoc_get() 682 text_indent = vim_strnsave(theline, text_indent_len); in heredoc_get() 687 if (theline[ti] != text_indent[ti]) in heredoc_get() 690 if (list_append_string(l, theline + ti, -1) == FAIL) in heredoc_get() [all …]
|
| H A D | ex_cmds.c | 3257 char_u *theline; in ex_append() local 3312 theline = vim_strnsave(eap->nextcmd, p - eap->nextcmd); in ex_append() 3324 theline = eap->getline( in ex_append() 3332 if (theline == NULL) in ex_append() 3341 for (p = theline; indent > vcol; ++p) in ex_append() 3354 vim_free(theline); in ex_append() 3360 theline[0] = NUL; in ex_append() 3363 ml_append(lnum, theline, (colnr_T)0, FALSE); in ex_append() 3366 vim_free(theline); in ex_append()
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_trycatch.vim | 1645 let theline = getline(".") 1646 if theline =~ "skip" 1649 elseif theline =~ "throw" 1660 let theline = getline(".") 1661 if theline =~ "not" " T74_subst() should not be called for this line 1664 elseif theline =~ "throw"
|