Lines Matching refs:firstline
1458 char_u *firstline, *ins_text; in op_insert() local
1501 firstline = ml_get(oap->start.lnum) + bd.textcol; in op_insert()
1504 firstline += bd.textlen; in op_insert()
1505 pre_textlen = (long)STRLEN(firstline); in op_insert()
1637 firstline = ml_get(oap->start.lnum); in op_insert()
1638 len = STRLEN(firstline); in op_insert()
1658 firstline += len; // short line, point to the NUL in op_insert()
1660 firstline += add; in op_insert()
1662 (long)STRLEN(firstline) - pre_textlen - offset) > 0) in op_insert()
1664 ins_text = vim_strnsave(firstline, ins_len); in op_insert()
1696 char_u *firstline; in op_change() local
1736 firstline = ml_get(oap->start.lnum); in op_change()
1737 pre_textlen = (long)STRLEN(firstline); in op_change()
1738 pre_indent = (long)getwhitecols(firstline); in op_change()
1758 firstline = ml_get(oap->start.lnum); in op_change()
1761 long new_indent = (long)getwhitecols(firstline); in op_change()
1767 ins_len = (long)STRLEN(firstline) - pre_textlen; in op_change()
1774 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len); in op_change()