Home
last modified time | relevance | path

Searched refs:ins_text (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dops.c1458 char_u *firstline, *ins_text; in op_insert() local
1664 ins_text = vim_strnsave(firstline, ins_len); in op_insert()
1665 if (ins_text != NULL) in op_insert()
1670 block_insert(oap, ins_text, (oap->op_type == OP_INSERT), in op_insert()
1675 vim_free(ins_text); in op_insert()
1697 char_u *ins_text, *newp, *oldp; in op_change() local
1772 if ((ins_text = alloc(ins_len + 1)) != NULL) in op_change()
1774 vim_strncpy(ins_text, firstline + bd.textcol, (size_t)ins_len); in op_change()
1801 mch_memmove(newp + offset, ins_text, (size_t)ins_len); in op_change()
1812 vim_free(ins_text); in op_change()