Lines Matching refs:theline
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()
664 && STRNCMP(theline, *eap->cmdlinep, marker_indent_len) == 0) 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()
692 vim_free(theline); in heredoc_get()