Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dregister.c1239 bd.endspaces = 0; in op_yank()
1281 bd.endspaces = oap->end.coladd in op_yank()
1466 bd->endspaces = 0; in yank_copy_line()
1476 pnew += bd->endspaces; in yank_copy_line()
1479 int s = bd->textlen + bd->endspaces; in yank_copy_line()
1829 bd.endspaces = 0; in do_put()
1858 bd.endspaces = vcol - col; in do_put()
1859 bd.startspaces = incr - bd.endspaces; in do_put()
1870 bd.endspaces = 0; in do_put()
1926 vim_memset(ptr, ' ', (size_t)bd.endspaces); in do_put()
[all …]
H A Dops.c516 spaces = (bdp->endspaces ? ts_val - bdp->endspaces : 0); in block_insert()
784 n = bd.textlen - bd.startspaces - bd.endspaces; in op_delete()
793 (size_t)(bd.startspaces + bd.endspaces)); in op_delete()
1068 n += (bd.endspaces in op_replace()
1082 ++bd.endspaces; in op_replace()
1523 for (i = 0; i < bd.endspaces; ++i) in op_insert()
1525 bd.textlen += bd.endspaces; in op_insert()
1626 if (bd2.endspaces) in op_insert()
2206 bdp->endspaces = 0; in block_prep()
2308 if (!is_del && bdp->endspaces) in block_prep()
[all …]
H A Dstructs.h4337 int endspaces; // 'extra' cols after last char member