Searched refs:lbuf (Results 1 – 7 of 7) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | termlib.c | 177 char *lbuf = tbuf; // lbuf=line buffer in nextent() local 181 fgets(lbuf, (int)(tbuf+buflen-lbuf), termcap)) // another line in nextent() 183 int llen = strlen(lbuf); in nextent() 185 if (*lbuf == '#') // eat comments in nextent() 187 if (lbuf[-1] == ':' && // and whitespace in nextent() 188 lbuf[0] == '\t' && in nextent() 189 lbuf[1] == ':') in nextent() 191 STRMOVE(lbuf, lbuf + 2); in nextent() 194 if (lbuf[llen-2] == '\\') // and continuations in nextent() 195 lbuf += llen-2; in nextent() [all …]
|
| H A D | tag.c | 2043 vim_free(lbuf); in find_tags() 2133 || (lbuf[0] == '!' && ASCII_ISLOWER(lbuf[1]))) in find_tags() 2243 vim_free(lbuf); in find_tags() 2245 if (lbuf == NULL) in find_tags() 2636 STRCPY(s, lbuf); in find_tags() 2767 vim_free(lbuf); in find_tags() 3086 if (p == lbuf) in parse_tag_line() 3197 if (*lbuf) in parse_match() 3201 lbuf += STRLEN(lbuf); in parse_match() 3207 ++lbuf; in parse_match() [all …]
|
| H A D | beval.c | 37 char_u *lbuf; in find_word_under_cursor() local 49 lbuf = ml_get_buf(wp->w_buffer, lnum, FALSE); in find_word_under_cursor() 50 if (col <= win_linetabsize(wp, lbuf, (colnr_T)MAXCOL)) in find_word_under_cursor() 92 lbuf = ml_get_buf(curwin->w_buffer, VIsual.lnum, FALSE); in find_word_under_cursor() 95 len += mb_ptr2len(lbuf + epos->col); in find_word_under_cursor() 96 lbuf = vim_strnsave(lbuf + spos->col, len); in find_word_under_cursor() 106 &lbuf, &scol, flags); in find_word_under_cursor() 110 lbuf = vim_strnsave(lbuf, len); in find_word_under_cursor() 120 *textp = lbuf; in find_word_under_cursor()
|
| H A D | sign.c | 780 char lbuf[MSG_BUF_LEN]; in sign_list_placed() local 793 vim_snprintf(lbuf, MSG_BUF_LEN, _("Signs for %s:"), buf->b_fname); in sign_list_placed() 794 msg_puts_attr(lbuf, HL_ATTR(HLF_D)); in sign_list_placed() 808 vim_snprintf(lbuf, MSG_BUF_LEN, in sign_list_placed() 812 msg_puts(lbuf); in sign_list_placed()
|
| H A D | charset.c | 1773 vim_isblankline(char_u *lbuf) in vim_isblankline() argument 1777 p = skipwhite(lbuf); in vim_isblankline()
|
| H A D | search.c | 3220 static buf_T *lbuf = NULL; in update_search_stat() local 3249 && lbuf == curbuf) || wraparound || cur < 0 in update_search_stat() 3257 lbuf = curbuf; in update_search_stat() 3306 lbuf = curbuf; in update_search_stat()
|
| /vim-8.2.3635/src/proto/ |
| H A D | charset.pro | 57 int vim_isblankline(char_u *lbuf);
|