Lines Matching refs:textline

5230     char_u  *textline;  in get_separator()  local
5236 textline = alloc(width + (int)STRLEN(fname) + 1); in get_separator()
5237 if (textline == NULL) in get_separator()
5260 textline[i] = '='; in get_separator()
5261 textline[i++] = ' '; in get_separator()
5263 STRCPY(textline + i, p); in get_separator()
5264 off = STRLEN(textline); in get_separator()
5265 textline[off] = ' '; in get_separator()
5267 textline[off + i] = '='; in get_separator()
5268 textline[off + i] = NUL; in get_separator()
5270 return textline; in get_separator()
5288 char_u *textline = NULL; in term_load_dump() local
5390 textline = get_separator(width, fname1); in term_load_dump()
5391 if (textline == NULL) in term_load_dump()
5394 ml_append(curbuf->b_ml.ml_line_count, textline, 0, FALSE); in term_load_dump()
5395 vim_free(textline); in term_load_dump()
5397 textline = get_separator(width, fname2); in term_load_dump()
5398 if (textline == NULL) in term_load_dump()
5401 ml_append(curbuf->b_ml.ml_line_count, textline, 0, FALSE); in term_load_dump()
5402 textline[width] = NUL; in term_load_dump()
5408 vim_free(textline); in term_load_dump()
5409 textline = alloc(width2 + 1); in term_load_dump()
5410 if (textline == NULL) in term_load_dump()
5413 textline[width] = NUL; in term_load_dump()
5423 textline[i] = '-'; in term_load_dump()
5450 textline[col] = ' '; in term_load_dump()
5453 textline[col] = 'X'; in term_load_dump()
5459 textline[col] = '>'; in term_load_dump()
5465 textline[col] = '<'; in term_load_dump()
5470 textline[col] = 'w'; in term_load_dump()
5473 textline[col] = 'f'; in term_load_dump()
5476 textline[col] = 'b'; in term_load_dump()
5479 textline[col] = 'a'; in term_load_dump()
5489 textline[col] = '?'; in term_load_dump()
5492 textline[col] = '+'; in term_load_dump()
5497 textline[col] = '-'; in term_load_dump()
5507 ml_append(term->tl_top_diff_rows + lnum, textline, 0, FALSE); in term_load_dump()
5515 textline[i] = '+'; in term_load_dump()
5518 ml_append(term->tl_top_diff_rows + lnum, textline, 0, FALSE); in term_load_dump()
5530 vim_free(textline); in term_load_dump()